public SolutionsController(ISolutionService solutionService, IUtilityService utilityService,
                            ISolutionTypeService solutionTypeService,
                            ISearchKeyService searchKeyService)
 {
     _solutionService     = solutionService;
     _solutionTypeService = solutionTypeService;
     _searchKeyService    = searchKeyService;
     _utilityService      = utilityService;
 }
 public SearchController(ISolutionService solutionService, IUtilityService utilityService,
     ISolutionTypeService solutionTypeService,
     ISearchKeyService searchKeyService)
 {
     _solutionService = solutionService;
     _solutionTypeService = solutionTypeService;
     _searchKeyService = searchKeyService;
     _utilityService = utilityService;
 }
 public RegisterController(ISolutionService solutionService, ISolutionTypeService solutionTypeService,
                           ISearchKeyService searchKeyService, ISnippetService snippetService,
                           IProgrammingLanguageService languageService, IUtilityService utilityService)
 {
     _solutionService     = solutionService;
     _snippetService      = snippetService;
     _solutionTypeService = solutionTypeService;
     _searchKeyService    = searchKeyService;
     _utilityService      = utilityService;
     _languageService     = languageService;
 }
 public RegisterController(ISolutionService solutionService, ISolutionTypeService solutionTypeService,
     ISearchKeyService searchKeyService, ISnippetService snippetService,
     IProgrammingLanguageService languageService, IUtilityService utilityService)
 {
     _solutionService = solutionService;
     _snippetService = snippetService;
     _solutionTypeService = solutionTypeService;
     _searchKeyService = searchKeyService;
     _utilityService = utilityService;
     _languageService = languageService;
 }
 public SettingsController(IProgrammingLanguageService languageService,ISolutionTypeService solutionTypeService)
 {
     _languageService = languageService;
     _solutionTypeService = solutionTypeService;
 }
Beispiel #6
0
 public SettingsController(IProgrammingLanguageService languageService, ISolutionTypeService solutionTypeService)
 {
     _languageService     = languageService;
     _solutionTypeService = solutionTypeService;
 }