protected override DataLoaderControllerDescription OnBuildDescription()
        {
            var description = new DataLoaderFileControllerDescription
            {
                DataLoaderProviderControllerId = DataLoaderProviderController,
                DataLoaderId    = DataLoader,
                SerializerId    = Serializer,
                StoragePathType = m_storagePathType,
                StoragePath     = m_storagePath
            };

            return(description);
        }
Exemple #2
0
 public DataLoaderFileController(DataLoaderFileControllerDescription description, IApplication application) : base(description, application)
 {
     Description = description ?? throw new ArgumentNullException(nameof(description));
 }