Beispiel #1
0
 public DropDownController(IEnumCountryBL _EnumCountryrepo, IPurcheaseDetailsBL _PurcheaseDetailsrepo)
 {
     this.EnumCountryrepo      = _EnumCountryrepo;
     this.PurcheaseDetailsrepo = _PurcheaseDetailsrepo;
 }
 public PurcheaseReturnController(IPurcheaseReturnsBL _repo, IPurcheaseDetailsBL _repoPur)
 {
     this.repo    = _repo;
     this.repoPur = _repoPur;
 }
Beispiel #3
0
 public PurchaseController(IPurchasesBL _repo, IProductsBL _prorepo, IPurcheaseDetailsBL _prodrepo)
 {
     this.repo     = _repo;
     this.prorepo  = _prorepo;
     this.prodrepo = _prodrepo;
 }
Beispiel #4
0
 public PurcheaseDetailController(IPurcheaseDetailsBL _repo)
 {
     this.repo = _repo;
 }