public UpdateCollectionModelValidator(ICollectionsCrudService collectionsCrudService, IThemesCrudService themesCrudService, IUserCrudService userCrudService, IResourceCrudService resourceCrudService)
 {
     this.collectionsCrudService = collectionsCrudService;
     this.themesCrudService      = themesCrudService;
     this.userCrudService        = userCrudService;
     this.resourceCrudService    = resourceCrudService;
 }
Esempio n. 2
0
 public ThemesManager(IThemesCrudService themesCrudService, ICreateThemeModelValidator createThemeModelValidator, IUpdateThemeModelValidator updateThemeModelValidator, IDeleteThemeModelValidator deleteThemeModelValidator, IMapper mapper)
 {
     this.themesCrudService         = themesCrudService;
     this.createThemeModelValidator = createThemeModelValidator;
     this.updateThemeModelValidator = updateThemeModelValidator;
     this.deleteThemeModelValidator = deleteThemeModelValidator;
     this.mapper = mapper;
 }
Esempio n. 3
0
 public Admin(ISessionHelper sessionHelper, IAppUsersManager usersManager, IThemesCrudService themesCrudService, IResourcesManager resourcesManager, IThemesManager themesManager, IMapper mapper)
 {
     this.sessionHelper     = sessionHelper;
     this.usersManager      = usersManager;
     this.themesCrudService = themesCrudService;
     this.themesManager     = themesManager;
     this.resourcesManager  = resourcesManager;
     this.mapper            = mapper;
 }
Esempio n. 4
0
 public DeleteThemeModelValidator(IThemesCrudService themesCrudService)
 {
     this.themesCrudService = themesCrudService;
 }