public ProductService (MicroManageContext context) { this.Context = context; }
public AuditService(MicroManageContext context) { this.Context = context; }
public InventoryService(MicroManageContext context, INotifierService notifierService, IAuditService auditService, IProductService productService) { this.Context = context; this.NotifierService = notifierService; this.AuditService = auditService; this.ProductService = productService; }
public CategoryService (MicroManageContext context) { this.Context = context; }
public BinService(MicroManageContext context) { this.Context = context; }
public OrderService (MicroManageContext context) { this.Context = context; }
public AddressService (MicroManageContext context) { this.Context = context; }
public _MicroController() { _db = new MicroManageContext(); }