public ProductService(BusinessLogicDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #2
0
 public ClientService(BusinessLogicDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #3
0
 public ProviderService(BusinessLogicDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #4
0
 public BuyService(BusinessLogicDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #5
0
 public UserService(
     BusinessLogicDbContext businessLogicDbContext)
 {
     _businessLogicDbContext = businessLogicDbContext;
 }