Beispiel #1
0
 public OrderService(ICartService cartService, ICurrentDailyTransfterHeaderService currentDailyTransfterHeaderService, ICurrentDailyTransfterDetailsService currentDailyTransfterDetailsService, OurCartDBContext dBContext)
 {
     context      = dBContext;
     _cartService = cartService;
     _currentDailyTransfterDetailsService = currentDailyTransfterDetailsService;
     _currentDailyTransfterHeaderService  = currentDailyTransfterHeaderService;
 }
Beispiel #2
0
 public CartService(OurCartDBContext dbContext, ICategoryService catService) : base(dbContext)
 {
     _catService = catService;
 }
Beispiel #3
0
 public CurrentDailyTransfterHeadersService(OurCartDBContext dbContext) : base(dbContext)
 {
 }
 public OrdersController(OurCartDBContext ourERPClinicContext, IOrderService orderService)
 {
     _ourERPClinicContext = ourERPClinicContext;
     _orderService        = orderService;
 }
Beispiel #5
0
 public FavService(OurCartDBContext dbContext) : base(dbContext)
 {
 }
 public FavouritesController(OurCartDBContext _dbContext, IFavouriteService favouriteService) : base(_dbContext)
 {
     _favService = favouriteService;
 }
 public CategoryService(OurCartDBContext _dbContext) : base(_dbContext)
 {
 }
Beispiel #8
0
 public BaseRepository(OurCartDBContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #9
0
 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;
 }
Beispiel #13
0
 public AccountController(IAccountService accountService, OurCartDBContext _OurERPClinicContext, IConfiguration config) : base(_OurERPClinicContext)
 {
     _accountService = accountService;
     _config         = config;
 }
Beispiel #14
0
 public AppMessagesService(OurCartDBContext _dbContext) : base(_dbContext)
 {
 }
Beispiel #15
0
 public CartController(OurCartDBContext _dbContext, ICartService cartService) : base(_dbContext)
 {
     _cartService = cartService;
 }
 public BaseController(OurCartDBContext _dbContext)
 {
     dbContext = _dbContext;
     _db       = new BaseRepository <T>(_dbContext);
 }
Beispiel #17
0
 public CategoryController(OurCartDBContext _dbcontext, ICategoryService catService) : base(_dbcontext)
 {
     _catService = catService;
 }