IUnitOfWork.cs 492 B

1234567891011121314151617181920212223
  1. // ======================================
  2. // Author: Ebenezer Monney
  3. // Email: info@ebenmonney.com
  4. // Copyright (c) 2017 www.ebenmonney.com
  5. //
  6. // ==> Gun4Hire: contact@ebenmonney.com
  7. // ======================================
  8. using DAL.Repositories.Interfaces;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Linq;
  12. using System.Text;
  13. using System.Threading.Tasks;
  14. namespace DAL
  15. {
  16. public interface IUnitOfWork
  17. {
  18. int SaveChanges();
  19. }
  20. }