Beispiel #1
0
 public AccountController(ILocationService m_locationService,
                          IExperienceService m_expService,
                          ICurrencyUserManager m_currencyUserService,
                          ILearnWordResultService m_learnWordResult,
                          IClassService m_classService,
                          IHepaPassportService m_passportService,
                          IUserService m_userService)
 {
     this.m_locationService        = m_locationService;
     this.m_userManager            = new ApplicationUserManager(new UserStore <ApplicationUser>(DatabaseService.CreateDbContext()));
     this.m_expService             = m_expService;
     this.m_currencyUserService    = m_currencyUserService;
     this.m_learnWordResultService = m_learnWordResult;
     this.m_passportService        = m_passportService;
     this.m_userService            = m_userService;
     this.m_classService           = m_classService;
 }
 public LearnWordHistoryController(ILearnWordResultService m_learnWordResult, IClassService m_classService)
 {
     this.m_learnWordResult = m_learnWordResult;
     this.m_classService    = m_classService;
 }