public PageSectionTypeController(UserManager <SuUserModel> userManager
                                  , IPageSectionTypeLanguageRepository PageSectionTypeLanguage
                                  , IPageSectionTypeRepository PageSectionType
                                  , ILanguageRepository language
                                  , SuDbContext context) : base(userManager, language)
 {
     _PageSectionTypeLanguage = PageSectionTypeLanguage;
     _PageSectionType         = PageSectionType;
     _context = context;
 }
Exemple #2
0
 public PageSectionController(UserManager <SuUserModel> userManager
                              , IPageSectionRepository PageSection
                              , IPageSectionLanguageRepository PageSectionLanguage
                              , ILanguageRepository language
                              , IPageSectionTypeRepository pageSectionType
                              , IPageSectionTypeLanguageRepository pageSectionTypeLanguage
                              , IContentTypeRepository contentType
                              , IContentTypeLanguageRepository contentTypeLanguage
                              , SuDbContext context) : base(userManager, language)
 {
     _pageSection             = PageSection;
     _pageSectionLanguage     = PageSectionLanguage;
     _pageSectionType         = pageSectionType;
     _pageSectionTypeLanguage = pageSectionTypeLanguage;
     _contentType             = contentType;
     _contentTypeLanguage     = contentTypeLanguage;
     _context = context;
 }