예제 #1
0
 public ArmoryController(IContextService contextService, IItemMapperService itemMapperService, WebsiteContext websiteContext, UserManager <ApplicationUser> userManager)
 {
     _contextService    = contextService;
     _itemMapperService = itemMapperService;
     _websiteContext    = websiteContext;
     _userManager       = userManager;
 }
 public CharacterController(UserManager <ApplicationUser> userManager, IContextService contextService, WebsiteContext websiteContext, IItemMapperService itemMapperService)
 {
     _websiteContext    = websiteContext;
     _itemMapperService = itemMapperService;
     _userManager       = userManager;
     _contextService    = contextService;
 }
예제 #3
0
 public GuildController(IContextService contextService, IItemMapperService itemMapperService)
 {
     _contextService    = contextService;
     _itemMapperService = itemMapperService;
 }