public PurchaseOrderRepositorys(PradadgeContext context,
                                 IStockRepositorys stock,
                                 IReferenceManagerRepository reference,
                                 IStockCardRepositorys Card)
 {
     this.context   = context;
     this.reference = reference;
     this.Card      = Card;
     this.stock     = stock;
 }
示例#2
0
 public SalesDetailRepository(PradadgeContext context,
                              IReferenceManagerRepository reference,
                              IStockCardRepositorys card,
                              IStockRepositorys stock,
                              IPaymentRepository payment)
 {
     this.context   = context;
     this.reference = reference;
     this.stock     = stock;
     this.card      = card;
     this.payment   = payment;
 }
 public StockController(IStockRepositorys repo)
 {
     this.repo = repo;
 }