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