Beispiel #1
0
 public OrderRepository(CpkContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public OrderController(IOrderService service, IBasketService basket, CpkContext context)
 {
     _service = service;
     _basket  = basket;
     _context = context;
 }
Beispiel #3
0
 public OrdersUow(CpkContext context) : base(context)
 {
 }
Beispiel #4
0
 public ProductRepository(CpkContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public ProductsUow(CpkContext context, IProductsRepository products) : base(context)
 {
     Products = products;
 }
Beispiel #6
0
 public BasketRepository(CpkContext context, IConfig config, IHttpContextAccessor accessor)
 {
     _context  = context;
     _config   = config;
     _accessor = accessor;
 }
 public ProductCategoryRepository(CpkContext context, IFilesRepository files)
 {
     _context = context;
     _files   = files;
 }
Beispiel #8
0
 protected UnitOfWorkBase(CpkContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public FilesRepository(CpkContext context, IConfig config)
 {
     _context = context;
     _config  = config;
 }
Beispiel #10
0
 public BasketUow(CpkContext context) : base(context)
 {
 }
Beispiel #11
0
 public FilesUow(CpkContext context) : base(context)
 {
 }
Beispiel #12
0
 public ProductCategoriesUow(CpkContext context, IProductCategoriesRepository repository) : base(context)
 {
     Repository = repository;
 }