Example #1
0
 public AccountsController(IMapper mapper, UserManager <User> userManager, IConfiguration configuration, WeddingDBContext context)
 {
     _mapper      = mapper;
     _userManager = userManager;
     _jwtSettings = configuration.GetSection("JwtSettings");
     db           = context;
 }
 public HotelVendorsController(WeddingDBContext context, IWebHostEnvironment hostEnvironment)
 {
     _context = context;
     this._hostEnvironment = hostEnvironment;
 }
 public AdminsController(WeddingDBContext context)
 {
     _context = context;
 }
 public ClientsController(WeddingDBContext context)
 {
     _context = context;
 }
Example #5
0
 public Client_AccountController(WeddingDBContext context)
 {
     _context = context;
 }
 public PackagesController(WeddingDBContext context)
 {
     _context = context;
 }
Example #7
0
 public ContactFormDetailsController(WeddingDBContext context)
 {
     _context = context;
 }
 public VendorRegistrationsController(WeddingDBContext context)
 {
     _context = context;
 }
 public Vendor_AccountController(WeddingDBContext context)
 {
     _context = context;
 }
 public ClientRegistrationsController(WeddingDBContext context)
 {
     _context = context;
 }
 public NewsTellersController(WeddingDBContext context)
 {
     _context = context;
 }
 public AddingCartsController(WeddingDBContext context, IWebHostEnvironment hostEnvironment)
 {
     _context = context;
     this._hostEnvironment = hostEnvironment;
 }
 public VendorsController(WeddingDBContext context)
 {
     _context = context;
 }