Esempio n. 1
0
 public ProductCategoryController(AWSDbContext context, IProductCategoryService productCategoryService)
 {
     _context = context;
     _productCategoryService = productCategoryService;
 }
Esempio n. 2
0
 public ProductCategoryService(AWSDbContext ctx) : base(ctx)
 {
     _ctx = ctx;
 }
Esempio n. 3
0
 public UnitOfWork(AWSDbContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public EntityRepository(AWSDbContext context)
 {
     this.context = context;
 }
Esempio n. 5
0
 public SalesOrderService(AWSDbContext ctx) : base(ctx)
 {
     _ctx = ctx;
 }