public ForumController(IForumService service, IPrincipal principal, IFileUploadService fileService, IConfigSettingsService configServices, IProfanityService profService) { _service = service; _principal = principal; _fileService = fileService; _configServices = configServices; _profService = profService; }
public StatusService(IConfigSettingsService configuration, IRepository repo) { this._configuration = configuration; this._repo = repo; }
public ThirdPartyLoginController(IThirdPartyLoginService Service, IAssignRoleService RoleService, IConfigSettingsService ConfigService) { _service = Service; _roleService = RoleService; _configService = ConfigService; }