public ProductsService(BeecowDbContext dbContext, IMapper mapper) { _dbContext = dbContext; _mapper = mapper; }
public BusinessService(BeecowDbContext dbContext) { _dbContext = dbContext; }
public OrderService(BeecowDbContext customersDbContext) { this.customersDbContext = customersDbContext; }
public UserService(BeecowDbContext dbContext, IMapper mapper) { _dbContext = dbContext; _mapper = mapper; }