Esempio n. 1
0
 public ProductService (MicroManageContext context) {
     this.Context = context;
 }
Esempio n. 2
0
 public AuditService(MicroManageContext context) {
     this.Context = context;
 }
Esempio n. 3
0
 public InventoryService(MicroManageContext context, INotifierService notifierService, IAuditService auditService, IProductService productService) {
     this.Context = context;
     this.NotifierService = notifierService;
     this.AuditService = auditService;
     this.ProductService = productService;
 }
Esempio n. 4
0
 public CategoryService (MicroManageContext context) {
     this.Context = context;
 }
Esempio n. 5
0
 public BinService(MicroManageContext context) {
     this.Context = context;
 }
Esempio n. 6
0
 public OrderService (MicroManageContext context) {
     this.Context = context;
 }
Esempio n. 7
0
 public AddressService (MicroManageContext context) {
     this.Context = context;
 }
Esempio n. 8
0
 public _MicroController()
 {
     _db = new MicroManageContext();
 }