Example #1
0
 public ApiUserController()
 {
     _common                 = new commonRepository();
     _userMaster             = new UserMasterRepository();
     _registrationRepository = new RegistrationRepository();
     _licenceImagesReposiory = new LicenceImagesReposiory();
 }
Example #2
0
 public AccountController()
 {
     _user                         = new UserMasterRepository();
     _commonRepository             = new commonRepository();
     _registrationRepository       = new RegistrationRepository();
     _dealRepository               = new DealRepository();
     _schemeRepository             = new SchemeRepository();
     _productCategoryRepository    = new ProductCategoryRepository();
     _productSubCategoryRepository = new ProductSubCategoryRepository();
     _productRepository            = new ProductRepository();
     _licenceImagesReposiory       = new LicenceImagesReposiory();
     _orderRepository              = new OrderRepository();
     _orderItemRepository          = new OrderItemRepository();
 }