public CustomersController(
     SignInManager <IdentityUser> signInManager,
     ApplicationDbContext context)
 {
     _signInManager = signInManager;
     _customer      = new LCustomers(context);
 }
 public RegisterModel(
     UserManager <IdentityUser> userManager,
     SignInManager <IdentityUser> signInManager,
     RoleManager <IdentityRole> roleManager,
     ApplicationDbContext context,
     IWebHostEnvironment environment)
 {
     _context      = context;
     _userManager  = userManager;
     _sigInManager = signInManager;
     _roleManager  = roleManager;
     _environment  = environment;
     _uploadimage  = new Uploadimage();
     _customer     = new LCustomers(context);
 }
 public ReportsModel(ApplicationDbContext context, UserManager <IdentityUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
     _customer    = new LCustomers(context);
 }
 public DetailsModel(
     ApplicationDbContext context)
 {
     _customer = new LCustomers(context);
 }