public AllProductsController(IPaytmCustomersBO _paytmBo, IClothCategoryBO _clothCategoryBo, ICountrysBO _countryBo, GRDBContext DBcontext)
 {
     this._paytmBo = _paytmBo;
     this._clothCategoryBo = _clothCategoryBo;
     this._countryBo = _countryBo;
     this.DBcontext = DBcontext;
 }
 public AllProductsController()
 {
     _paytmBo = new PaytmCustomersBO();
     _loginBo = new PaytmLoginBO();
     _countryBo = new CountrysBO();
     _clothCategoryBo = new ClothCategoryBO();
     DBcontext = new GRDBContext();
 }
Ejemplo n.º 3
0
 public ShopController()
 {
     _countryBo = new CountrysBO();
     _clothCategoryBo = new ClothCategoryBO();
 }
Ejemplo n.º 4
0
 public ShopController(ICountrysBO _countryBo, IClothCategoryBO _clothCategoryBo)
 {
     this._countryBo = _countryBo;
     this._clothCategoryBo = _clothCategoryBo;
 }