| 12345678910111213141516171819202122232425262728 |
- // ======================================
- // Author: Ebenezer Monney
- // Email: info@ebenmonney.com
- // Copyright (c) 2017 www.ebenmonney.com
- //
- // ==> Gun4Hire: contact@ebenmonney.com
- // ======================================
- using DAL.Repositories.Interfaces;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace DAL
- {
- public interface IUnitOfWork
- {
- ICustomerRepository Customers { get; }
- IProductRepository Products { get; }
- IOrdersRepository Orders { get; }
- int SaveChanges();
- }
- }
|