public OrderService(ICartService cartService, ICurrentDailyTransfterHeaderService currentDailyTransfterHeaderService, ICurrentDailyTransfterDetailsService currentDailyTransfterDetailsService, OurCartDBContext dBContext) { context = dBContext; _cartService = cartService; _currentDailyTransfterDetailsService = currentDailyTransfterDetailsService; _currentDailyTransfterHeaderService = currentDailyTransfterHeaderService; }
public CartService(OurCartDBContext dbContext, ICategoryService catService) : base(dbContext) { _catService = catService; }
public CurrentDailyTransfterHeadersService(OurCartDBContext dbContext) : base(dbContext) { }
public OrdersController(OurCartDBContext ourERPClinicContext, IOrderService orderService) { _ourERPClinicContext = ourERPClinicContext; _orderService = orderService; }
public FavService(OurCartDBContext dbContext) : base(dbContext) { }
public FavouritesController(OurCartDBContext _dbContext, IFavouriteService favouriteService) : base(_dbContext) { _favService = favouriteService; }
public CategoryService(OurCartDBContext _dbContext) : base(_dbContext) { }
public BaseRepository(OurCartDBContext dbContext) { _dbContext = dbContext; }
public MessageController(OurCartDBContext _dbContext, IAppMessagesService appMessagesService) : base(_dbContext) { _appMessagesService = appMessagesService; }
public OfferService(OurCartDBContext dbContext) { _dbContext = dbContext; }
public AccountService(OurCartDBContext dbContext) : base(dbContext) { }
public AreaService(OurCartDBContext dbContext) { _dbContext = dbContext; }
public AccountController(IAccountService accountService, OurCartDBContext _OurERPClinicContext, IConfiguration config) : base(_OurERPClinicContext) { _accountService = accountService; _config = config; }
public AppMessagesService(OurCartDBContext _dbContext) : base(_dbContext) { }
public CartController(OurCartDBContext _dbContext, ICartService cartService) : base(_dbContext) { _cartService = cartService; }
public BaseController(OurCartDBContext _dbContext) { dbContext = _dbContext; _db = new BaseRepository <T>(_dbContext); }
public CategoryController(OurCartDBContext _dbcontext, ICategoryService catService) : base(_dbcontext) { _catService = catService; }