using System; using System.Collections.Generic; using AsbCloudApp.Data; namespace AsbCloudApp.Services { public interface IFileService { string RootPath { get; } IDictionary SaveFilesPropertiesToDb(int wellId, int idCategory, IEnumerable<(string fileName, int idCategory, DateTime date, int idUser)> filesInfo); IEnumerable GetFilesInfo(int wellId, int idCategory); (int Id, string Name, int IdCategory)? GetFileInfo(int fileId); } }