IDepositRepository, IFileRepository, IFileStorageRepository, ILimitingParameterRepository, IProcessMapRepository, ITelemetryWirelineRunOutRepository, IUserRoleRepository, IWellCompositeRepository, IWellFinalDocumentsRepository, IWellOperationRepository

This commit is contained in:
ai.astrakhantsev 2023-02-27 10:06:54 +05:00
parent f0ba243afe
commit 9549b62d3e
11 changed files with 0 additions and 22 deletions

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// Сервис информации о кустах
/// </summary>
@ -40,5 +39,4 @@ namespace AsbCloudApp.Repositories
int depositId, CancellationToken token);
}
#nullable disable
}

View File

@ -7,7 +7,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// Сервис доступа к файлам
/// </summary>
@ -79,5 +78,4 @@ namespace AsbCloudApp.Repositories
Task<int> MarkFileMarkAsDeletedAsync(IEnumerable<int> idsMarks, CancellationToken token);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// Репозиторий хранения фалов
/// </summary>
@ -75,5 +74,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
string GetUrl(int idWell, int idCategory, int idFile, string dotExtention);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// Репозиторий по ограничивающим параметрам с фильтрацией
/// </summary>
@ -31,5 +30,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
Task<IEnumerable<LimitingParameterDataDto>> GetLimitingParametersAsync(LimitingParameterRequest request, int idTelemetry, double timezoneHours, CancellationToken token);
}
#nullable disable
}

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// CRUD для работы с плановой траекторией из клиента
/// </summary>
@ -61,5 +60,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
Task<int> DeleteByIdWellAsync(int idWell, CancellationToken token);
}
#nullable disable
}

View File

@ -8,7 +8,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// ÐÒÊ
/// </summary>
@ -32,5 +31,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
Task<IEnumerable<ProcessMapDto>> GetProcessMapAsync(IEnumerable<ProcessMapRequest> requests, CancellationToken token);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// Наработка талевого каната
/// </summary>
@ -37,5 +36,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
Task<IEnumerable<TelemetryWirelineRunOutDto>> GetAllAsync(int idCompany, CancellationToken token);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// Разрешения на доступ к данным
/// </summary>
@ -36,5 +35,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
bool HasPermission(IEnumerable<int> rolesIds, string permissionName);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// Репозиторий создания композитной скважины
/// </summary>
@ -37,5 +36,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
Task<IEnumerable<ProcessMapDto>> GetCompositeProcessMap(int idWell, CancellationToken token);
}
#nullable disable
}

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// Репозиторий "Дело скважины"
/// </summary>
@ -47,5 +46,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
Task<WellFinalDocumentDBDto> GetCategoryAsync(int idWell, int idCategory, int idUser, CancellationToken token);
}
#nullable disable
}

View File

@ -7,7 +7,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Repositories
{
#nullable enable
/// <summary>
/// сервис операций по скважине
/// </summary>
@ -98,5 +97,4 @@ namespace AsbCloudApp.Repositories
/// <returns></returns>
Task<int> DeleteAsync(IEnumerable<int> ids, CancellationToken token);
}
#nullable disable
}