Esempio n. 1
0
 public StoreCartController(IAllPhones phoneRepository, IAllUsers userRepository, StoreCart storeCart, AppDBContext context)
 {
     _phoneRep  = phoneRepository;
     _storeCart = storeCart;
     _userRep   = userRepository;
     db         = context;
 }
Esempio n. 2
0
 public PhonesController(IAllPhones iAllPhoes, IPhonesCategory iPhonesCategory)
 {
     _allPhones     = iAllPhoes;
     _allCategories = iPhonesCategory;
 }
Esempio n. 3
0
 public ShopCartController(IAllPhones phoneRepositiry, ShopCart shopCart)
 {
     _phoneRepositiry = phoneRepositiry;
     _shopCart        = shopCart;
 }
Esempio n. 4
0
 public HomeController(IAllPhones phoneRep)
 {
     _phoneRep = phoneRep;
 }
Esempio n. 5
0
 public PhonesController(IAllPhones iAllPhones, IPhonesCategory iPhonesCategories)
 {
     _allPhones        = iAllPhones;
     _phonesCategories = iPhonesCategories;
 }
Esempio n. 6
0
 public PhoneController(IAllPhones iAllPhones, IPhoneCategory iAllCategories)
 {
     _allPhones     = iAllPhones;
     _allCategories = iAllCategories;
 }
 public PhonesController(IAllPhones allPhones, ICategory categories)
 {
     _allPhones  = allPhones;
     _categories = categories;
 }
Esempio n. 8
0
 public HomeController(IAllPhones phoneRepositiry)
 {
     _phoneRepositiry = phoneRepositiry;
 }
 public PhoneController(IAllPhones _allPhones, IPhonesCategory _phoneCategory)
 {
     this._allPhones     = _allPhones;
     this._phoneCategory = _phoneCategory;
 }
Esempio n. 10
0
 public PhoneController(IAllPhones iPhones, IPhoneCategory iCategory)
 {
     _allCategory = iCategory;
     _allPhones   = iPhones;
 }
Esempio n. 11
0
        //private readonly ICategories _allCategories;

        public PhoneController(IAllPhones phones /*ICategories phoneCategory*/)
        {
            _allPhones = phones;
            //_allCategories = phoneCategory;
        }
Esempio n. 12
0
 public PhoneController(IAllPhones iallPhones, IPhoneCategory iphoneCategory)
 {
     _allPhones     = iallPhones;
     _allCategories = iphoneCategory;
 }