public ProductionController(ISalesInvoice sales, IProduct product, IBuyer buyer, IProduction production, PermessDbContext context, IStock stock)
 {
     _sales      = sales;
     _product    = product;
     _buyer      = buyer;
     _production = production;
     _context    = context;
     _stock      = stock;
 }
Example #2
0
 //string code = "";
 public SalesController(IBuyer buyer, ISalesInvoice sales, IProduct product, IPurchase purchase, PermessDbContext context, IStock stock, IPermess permess)
 {
     _buyer    = buyer;
     _sales    = sales;
     _product  = product;
     _purchase = purchase;
     _context  = context;
     _stock    = stock;
     _permess  = permess;
 }
 public PermessDataController(IBuyer buyer, IProduct product, IStock stock, IPermess permess, ISalesInvoice sales, PermessDbContext context, ISystemUser user)
 {
     _buyer   = buyer;
     _product = product;
     _stock   = stock;
     _permess = permess;
     _sales   = sales;
     _context = context;
     _user    = user;
 }
 public PurchaseService(PermessDbContext context)
 {
     _context = context;
 }
 public SystemUserService(PermessDbContext context)
 {
     _context = context;
 }
 public GlobalDataController(PermessDbContext context, ISystemUser system)
 {
     _context = context;
     _system  = system;
 }
Example #7
0
 public PermessService(PermessDbContext context)
 {
     _context = context;
 }
 public ProductService(PermessDbContext context)
 {
     _context = context;
 }
Example #9
0
 public BuyerService(PermessDbContext context)
 {
     _context = context;
 }
 public StockServices(PermessDbContext context)
 {
     _context = context;
 }
 public SalesInvoiceService(PermessDbContext context)
 {
     _context = context;
 }