public ProductService (MicroManageContext context) {
     this.Context = context;
 }
Exemple #2
0
 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;
 }
Exemple #5
0
 public BinService(MicroManageContext context) {
     this.Context = context;
 }
Exemple #6
0
 public OrderService (MicroManageContext context) {
     this.Context = context;
 }
 public AddressService (MicroManageContext context) {
     this.Context = context;
 }
 public _MicroController()
 {
     _db = new MicroManageContext();
 }