public TreatsController(PierresSweetAndSavouryTreatsContext db)
 {
     _db = db;
 }
 public AccountController(SignInManager <ApplicationUser> signInManager, UserManager <ApplicationUser> userManager, PierresSweetAndSavouryTreatsContext db)
 {
     _signInManager = signInManager;
     _userManager   = userManager;
     _db            = db;
 }