示例#1
0
 public CoolUserController(ICoolUserService coolUserService, ICoolComService coolComService, ILanguageService languageService, ErpManagerSettings erpManagerSettings)
 {
     _coolUserService    = coolUserService;
     _coolComService     = coolComService;
     _languageService    = languageService;
     _erpManagerSettings = erpManagerSettings;
 }
示例#2
0
 public CoolComController(ICoolUserService coolUserService, ICoolComService coolComService, ErpManagerSettings erpManagerSettings, IHttpContextAccessor httpContextAccessor, ILanguageService languageService)
 {
     _coolUserService     = coolUserService;
     _coolComService      = coolComService;
     _erpManagerSettings  = erpManagerSettings;
     _languageService     = languageService;
     _httpContextAccessor = httpContextAccessor;
 }
示例#3
0
 public HomeController(ICoolUserService coolUserService, ICoolComService coolComService, ILanguageService languageService, ErpManagerSettings erpManagerSettings, ICoolQueryService coolQueryService, ICoolAppService coolAppService)
 {
     _coolUserService    = coolUserService;
     _coolComService     = coolComService;
     _languageService    = languageService;
     _erpManagerSettings = erpManagerSettings;
     _coolQueryService   = coolQueryService;
     _coolAppService     = coolAppService;
 }