Example #1
0
 public PouchController(IHerbCountRepository herbCountRepository, IHerbInfoRepository herbInfoRepository, IPotionRepository potionRepository)
 {
     this.herbCountRepository = herbCountRepository;
     this.herbInfoRepository  = herbInfoRepository;
     this.potionRepository    = potionRepository;
     rand = new Random();
 }
Example #2
0
 public AccountController(UserManager <IdentityUser> userManager, SignInManager <IdentityUser> signInManager, IHerbCountRepository herbCountRepository)
 {
     this.userManager         = userManager;
     this.signInManager       = signInManager;
     this.herbCountRepository = herbCountRepository;
 }