Beispiel #1
0
 public UserController(UserService userService, CommunityService communityService,
                       RepairListService repairListService, RepairListInfoService repairListInfoService,
                       IMemoryCache memoryCache)
 {
     _userService           = userService;
     _communityService      = communityService;
     _repairListService     = repairListService;
     _repairListInfoService = repairListInfoService;
     _memoryCache           = memoryCache;
 }
Beispiel #2
0
 public HomeController(ILogger <HomeController> logger
                       , UserService userService
                       , CommunityService communityService
                       , RepairListService repairListService)
 {
     _logger            = logger;
     _userService       = userService;
     _communityService  = communityService;
     _repairListService = repairListService;
 }
Beispiel #3
0
 public AdminController(UserService userService
                        , CommunityService communityService
                        , RepairListService repairListService
                        , RepairListInfoService repairListInfoService
                        , AdminRoleService adminRoleService)
 {
     _userService           = userService;
     _communityService      = communityService;
     _repairListService     = repairListService;
     _repairListInfoService = repairListInfoService;
     _adminRoleService      = adminRoleService;
 }