public ProductService(DoggyFoodyDatabaseContext dbContext, IUserService userService, IProductFilter productFilter, IColumnService columnService) { _dbContext = dbContext; _userService = userService; _filter = productFilter; _columnService = columnService; }
public ColumnService(DoggyFoodyDatabaseContext dbContext) { _dbContext = dbContext; }
public AdvertisementService(DoggyFoodyDatabaseContext dbContext) { _dbContext = dbContext; }
public ManufacturerService(DoggyFoodyDatabaseContext dbContext) { _dbContext = dbContext; }
public UserService(DoggyFoodyDatabaseContext dbContext, IColumnService columnService) { _dbContext = dbContext; _columnService = columnService; }