Ejemplo n.º 1
0
 public DepartmentHeadServiceImpl(RequisitionRepo rrepo, RequisitionDetailRepo rdrepo, EmployeeRepo erepo, DepartmentRepo drepo, IMailer mailservice, CollectionPointRepo crepo)
 {
     this.rrepo       = rrepo;
     this.rdrepo      = rdrepo;
     this.erepo       = erepo;
     this.drepo       = drepo;
     this.mailservice = mailservice;
     this.crepo       = crepo;
 }
Ejemplo n.º 2
0
 public DepartmentEmpServiceImpl(RequisitionRepo rrepo, RequisitionDetailRepo rdrepo, ProductRepo prepo, EmployeeRepo erepo,
                                 DepartmentRepo drepo, CollectionPointRepo cprepo, IMailer mailservice)
 {
     this.rrepo       = rrepo;
     this.rdrepo      = rdrepo;
     this.prepo       = prepo;
     this.erepo       = erepo;
     this.drepo       = drepo;
     this.cprepo      = cprepo;
     this.mailservice = mailservice;
 }
Ejemplo n.º 3
0
 public StoreClerkServiceImpl(ProductRepo prepo, PurchaseRequestRepo purreqrepo, PurchaseOrderRepo porepo, PurchaseOrderDetailRepo podrepo,
                              RequisitionRepo rrepo, RequisitionDetailRepo rdrepo, TransactionRepo trepo, TenderQuotationRepo tqrepo, RetrievalRepo retrivrepo,
                              EmployeeRepo erepo, SupplierRepo srepo, IMailer mailservice, AdjustmentVoucherRepo avrepo, DepartmentRepo drepo, AdjustmentVoucherDetailRepo avdetrepo)
 {
     this.prepo       = prepo;
     this.purreqrepo  = purreqrepo;
     this.porepo      = porepo;
     this.podrepo     = podrepo;
     this.rrepo       = rrepo;
     this.rdrepo      = rdrepo;
     this.trepo       = trepo;
     this.retrivrepo  = retrivrepo;
     this.tqrepo      = tqrepo;
     this.erepo       = erepo;
     this.srepo       = srepo;
     this.mailservice = mailservice;
     this.avrepo      = avrepo;
     this.drepo       = drepo;
     this.avdetrepo   = avdetrepo;
 }