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; }
public GuildController(IContextService contextService, IItemMapperService itemMapperService) { _contextService = contextService; _itemMapperService = itemMapperService; }