public GroupController(Notificator notificator) { if (notificator == null) throw new ArgumentNullException("notificator"); _notificator = notificator; }
public ResourceController(Notificator notificator) { if (notificator == null) throw new ArgumentNullException(nameof(notificator)); _notificator = notificator; }
public EntityValidator(Notificator notificator, IValidatingFiles fileValidator) { if (notificator == null) throw new ArgumentNullException("notificator"); if (fileValidator == null) throw new ArgumentNullException("fileValidator"); _notificator = notificator; _fileValidator = fileValidator; }
public FileValidator(Notificator notificator, IConfiguration configuration) { if (notificator == null) throw new ArgumentNullException(nameof(notificator)); if (configuration == null) throw new ArgumentNullException(nameof(configuration)); _notificator = notificator; _configuration = configuration; }
public SharedController(IIlaroAdmin admin, Notificator notificator) { if (admin == null) throw new ArgumentNullException(nameof(admin)); if (notificator == null) throw new ArgumentNullException(nameof(notificator)); _admin = admin; _notificator = notificator; }
public GroupController( IIlaroAdmin admin, Notificator notificator, IRecordsService recordsService) { if (admin == null) throw new ArgumentNullException(nameof(admin)); if (notificator == null) throw new ArgumentNullException(nameof(notificator)); if (recordsService == null) throw new ArgumentNullException(nameof(recordsService)); _admin = admin; _notificator = notificator; _recordsService = recordsService; }
public EntitiesController( Notificator notificator, IFetchingRecords entitiesSource, IConfiguration configuration) { if (notificator == null) throw new ArgumentNullException("notificator"); if (entitiesSource == null) throw new ArgumentException("entitiesSource"); if (configuration == null) throw new ArgumentException("configuration"); _notificator = notificator; _entitiesSource = entitiesSource; _configuration = configuration; }
public EntityController( Notificator notificator, IEntityService entityService, IFetchingRecords source, IFetchingRecordsHierarchy hierarchySource) { if (notificator == null) throw new ArgumentNullException("notificator"); if (entityService == null) throw new ArgumentNullException("entityService"); if (source == null) throw new ArgumentNullException("source"); if (hierarchySource == null) throw new ArgumentNullException("hierarchySource"); _notificator = notificator; _entityService = entityService; _source = source; _hierarchySource = hierarchySource; }
public EntitiesController( IIlaroAdmin admin, Notificator notificator, IRecordsService recordsService, IConfiguration configuration) { if (admin == null) throw new ArgumentNullException(nameof(admin)); if (notificator == null) throw new ArgumentNullException(nameof(notificator)); if (recordsService == null) throw new ArgumentException(nameof(recordsService)); if (configuration == null) throw new ArgumentException(nameof(configuration)); _admin = admin; _notificator = notificator; _recordsService = recordsService; _configuration = configuration; }
public EntityService( Notificator notificator, IFetchingRecords source, ICreatingRecords creator, IUpdatingRecords updater, IDeletingRecords deleter) { if (notificator == null) throw new ArgumentNullException("notificator"); if (source == null) throw new ArgumentNullException("source"); if (creator == null) throw new ArgumentNullException("creator"); if (updater == null) throw new ArgumentNullException("updater"); if (deleter == null) throw new ArgumentNullException("deleter"); _notificator = notificator; _source = source; _creator = creator; _updater = updater; _deleter = deleter; }
public EntityController( IIlaroAdmin admin, Notificator notificator, IEntityService entityService, IFetchingRecords source, IFetchingRecordsHierarchy hierarchySource) { if (admin == null) throw new ArgumentNullException(nameof(admin)); if (notificator == null) throw new ArgumentNullException(nameof(notificator)); if (entityService == null) throw new ArgumentNullException(nameof(entityService)); if (source == null) throw new ArgumentNullException(nameof(source)); if (hierarchySource == null) throw new ArgumentNullException(nameof(hierarchySource)); _admin = admin; _notificator = notificator; _entityService = entityService; _source = source; _hierarchySource = hierarchySource; }