Example #1
0
 public SaleController(IUnitOfWork unitOfWork, IAutoPartController autoPartController, ISalesReturnController salesReturnController, IActionLogController actionLogController)
 {
     this.unitOfWork            = unitOfWork;
     this.autoPartController    = autoPartController;
     this.salesReturnController = salesReturnController;
     this.actionLogController   = actionLogController;
 }
Example #2
0
 public InventoryUserController(IUnitOfWork unitOfWork, IActionLogController actionLogController)
 {
     this.unitOfWork          = unitOfWork;
     this.actionLogController = actionLogController;
 }
 public CustomerController(IUnitOfWork unitOfWork, IActionLogController actionLogController)
 {
     this.unitOfWork          = unitOfWork;
     this.actionLogController = actionLogController;
 }
 public BrandController(IUnitOfWork unitOfWork, IActionLogController actionLogController)
 {
     this.unitOfWork          = unitOfWork;
     this.actionLogController = actionLogController;
 }
Example #5
0
 public PurchaseController(IUnitOfWork unitOfWork, IPurchaseReturnController purchaseReturnController, IActionLogController actionLogController)
 {
     this.unitOfWork = unitOfWork;
     this.purchaseReturnController = purchaseReturnController;
     this.actionLogController      = actionLogController;
 }
Example #6
0
 public PaymentDetailController(IUnitOfWork unitOfWork, IActionLogController actionLogController)
 {
     this.unitOfWork          = unitOfWork;
     this.actionLogController = actionLogController;
 }
 public PurchaseReturnController(IUnitOfWork unitOfWork, IAutoPartController autopartController, IActionLogController actionLogController)
 {
     this.unitOfWork          = unitOfWork;
     this.actionLogController = actionLogController;
     this.autopartController  = autopartController;
 }
 public AutoPartController(IUnitOfWork unitOfWork, IActionLogController actionLogController)
 {
     this.unitOfWork          = unitOfWork;
     this.actionLogController = actionLogController;
 }