Exemple #1
0
 public CategoryController(ICategoryRepository categoryRepository, ITestsContext testsContext)
 {
     _categoryRepository = categoryRepository;
     _testsContext       = testsContext;
 }
 public CategoryListViewModel(ITestsContext testsContext, ICategoryRepository categoriesRepository, ISurveyRepository surveyRepository)
 {
     _testsContext         = testsContext;
     _categoriesRepository = categoriesRepository;
     _surveyRepository     = surveyRepository;
 }
 public CategoryViewModelDto(ITestsContext testsContext, ICategoryRepository categoryRepository) : base(testsContext, categoryRepository)
 {
 }
Exemple #4
0
 public CategoryViewModel(ITestsContext testsContext, ICategoryRepository categoryRepository)
 {
     _testsContext         = testsContext;
     _categoriesRepository = categoryRepository;
 }