public UserController(
     IIntakeManager _db,
     UserManager <MyUserModel> userManager,
     SignInManager <MyUserModel> signInManager,
     RoleManager <MyRoleModel> roleManager,
     IOptions <ApplicationSetting> AppSetting)
 {
     this.db        = _db;
     _userManager   = userManager;
     _signInManager = signInManager;
     _roleManager   = roleManager;
     _AppSetting    = AppSetting.Value;
 }
 public IntakeController(IIntakeManager _db)
 {
     this.IntakeManager = _db;
 }