Example #1
0
 public AccountController(UserManager <ApplicationUser> usermanager,
                          SignInManager <ApplicationUser> signinmanager,
                          RoleManager <IdentityRole> roleManager
                          , IWebHostEnvironment hostingEnvironment
                          , IstoredetailsServices storedetailsServices
                          , IRadiusMasterServices RadiusMasterServices
                          , IDeliveryTimeMasterServices DeliveryTimeMasterServices
                          , ICountryRegistrationservices CountryRegistrationservices
                          , IStateRegistrationService StateRegistrationService
                          , ICityRegistrationservices cityRegistrationservices
                          , Iproductservices productservices
                          , Iproductcuisinemasterservices productcuisinemasterservices
                          , ISP_Call sP_Call
                          )
 {
     this.usermanager              = usermanager;
     this.signinmanager            = signinmanager;
     this.roleManager              = roleManager;
     _hostingEnvironment           = hostingEnvironment;
     _storedetailsServices         = storedetailsServices;
     _RadiusMasterServices         = RadiusMasterServices;
     _DeliveryTimeMasterServices   = DeliveryTimeMasterServices;
     _productservices              = productservices;
     _CountryRegistrationservices  = CountryRegistrationservices;
     _StateRegistrationService     = StateRegistrationService;
     _cityRegistrationservices     = cityRegistrationservices;
     _productcuisinemasterservices = productcuisinemasterservices;
     _sP_Call = sP_Call;
 }
Example #2
0
 public StoresController(UserManager <ApplicationUser> usermanager, SignInManager <ApplicationUser> signinmanager, ISP_Call ISP_Call, Iproductservices productservices, IstoredetailsServices storedetailsServices, IversionsServices versionsServices)
 {
     _usermanager          = usermanager;
     _signinmanager        = signinmanager;
     _ISP_Call             = ISP_Call;
     _productservices      = productservices;
     _storedetailsServices = storedetailsServices;
     _versionsServices     = versionsServices;
 }
 public productController(Iproductservices productservices
                          , Iproductcuisinemasterservices productcuisinemasterservices
                          , IWebHostEnvironment hostingEnvironment
                          , UserManager <ApplicationUser> userManager
                          , Imenumasterservices menumasterservices)
 {
     _hostingEnvironment           = hostingEnvironment;
     _productcuisinemasterservices = productcuisinemasterservices;
     _productservices    = productservices;
     _userManager        = userManager;
     _menumasterservices = menumasterservices;
 }
Example #4
0
 public hotelController(ICustomerRegistrationservices _CustomerRegistrationservices, IstoredetailsServices storedetailsServices, IWebHostEnvironment hostingEnvironment, Iproductcuisinemasterservices productcuisinemasterservices, Iproductservices productservices, IordersServices ordersServices, IorderproductServices orderproductServices, IorderhistoryServices orderhistoryServices, ApplicationDbContext db, ISP_Call ISP_Call, UserManager <ApplicationUser> usermanager)
 {
     _storedetailsServices         = storedetailsServices;
     _hostingEnvironment           = hostingEnvironment;
     _productcuisinemasterservices = productcuisinemasterservices;
     _productservices      = productservices;
     _ordersServices       = ordersServices;
     _orderproductServices = orderproductServices;
     _orderhistoryServices = orderhistoryServices;
     _db          = db;
     _ISP_Call    = ISP_Call;
     _usermanager = usermanager;
 }