예제 #1
0
 public UserController(UserService userService, CommunityService communityService,
                       RepairListService repairListService, RepairListInfoService repairListInfoService,
                       IMemoryCache memoryCache)
 {
     _userService           = userService;
     _communityService      = communityService;
     _repairListService     = repairListService;
     _repairListInfoService = repairListInfoService;
     _memoryCache           = memoryCache;
 }
예제 #2
0
 public AdminController(UserService userService
                        , CommunityService communityService
                        , RepairListService repairListService
                        , RepairListInfoService repairListInfoService
                        , AdminRoleService adminRoleService)
 {
     _userService           = userService;
     _communityService      = communityService;
     _repairListService     = repairListService;
     _repairListInfoService = repairListInfoService;
     _adminRoleService      = adminRoleService;
 }