ISubsystemOperationTimeService, ISubsystemService, FileService, IAuthService, ICrudRepository, IDetectedOperationService, ILimitingParameterService, IMessageService, IPlannedTrajectoryImportService, IProcessMapService, IReduceSamplingService, IReportService, IRepositoryWellRelated, IRequerstTrackerService, ISetpointsService, ITelemetryDataSaubService, ITelemetryDataService, ITelemetryService, ITelemetryUserService, ITrajectoryVisualizationService, IWellFinalDocumentsService, IWellService

This commit is contained in:
ai.astrakhantsev 2023-02-27 10:21:17 +05:00
parent dea93ac9c0
commit 57fc19396e
22 changed files with 2 additions and 48 deletions

View File

@ -9,7 +9,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис доступа к файлам
/// </summary>
@ -299,5 +298,4 @@ namespace AsbCloudApp.Services
return fileStream;
}
}
#nullable disable
}

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис авторизации
/// </summary>
@ -53,5 +52,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
int Register(UserRegistrationDto userDto);
}
#nullable disable
}

View File

@ -4,8 +4,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис получения, добавления, изменения, удаления данных
/// </summary>
@ -73,5 +71,4 @@ namespace AsbCloudApp.Services
/// <returns>количество добавленных, если меньше 0 - код ошибки</returns>
Task<int> DeleteAsync(int id, CancellationToken token);
}
#nullable disable
}

View File

@ -9,7 +9,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис автоматически определенных по телеметрии операций
/// </summary>
@ -74,5 +73,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Task<Stream> ExportAsync(IEnumerable<int> idsWells, CancellationToken token);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис по ограничивающим параметрам с фильтрацией
/// </summary>
@ -26,5 +25,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Dictionary<int, string> GetLimitingParameteraNames();
}
#nullable disable
}

View File

@ -1,7 +1,6 @@
using AsbCloudApp.Data;
using AsbCloudApp.Data.SAUB;
using AsbCloudApp.Requests;
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;

View File

@ -4,7 +4,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис загрузки и обработки плановой траектории из файла
/// </summary>
@ -38,5 +37,4 @@ namespace AsbCloudApp.Services
/// <param name="deleteBeforeImport">Очистить старые координаты перед импортом (если файл проходит валидацию)</param>
Task<int> ImportAsync(int idWell, int idUser, Stream stream, bool deleteBeforeImport, CancellationToken token);
}
#nullable disable
}

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис формирования РТК
/// </summary>
@ -19,5 +18,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Task<IEnumerable<ProcessMapReportDto>> GetProcessMapAsync(int idWell, CancellationToken token);
}
#nullable disable
}

View File

@ -3,7 +3,6 @@ using System.Collections.Generic;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Делегат обновления состояния задачи
/// </summary>
@ -39,5 +38,4 @@ namespace AsbCloudApp.Services
/// <returns>задача добавлена == true</returns>
bool TryEnqueueRediceSamplingJob(int idTelemetry, OnJobProgressDelagate onProgress, out JobDto jobDto);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис рапортов
/// </summary>
@ -58,7 +57,5 @@ namespace AsbCloudApp.Services
/// <param name="token"></param>
/// <returns></returns>
Task<IEnumerable<ReportPropertiesDto>> GetAllReportsByWellAsync(int idWell, CancellationToken token);
#nullable disable
}
}

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Репозиторий получения, добавления, изменения, удаления данных<br/>
/// Для сущностей относящихся к скважине
@ -30,5 +29,4 @@ namespace AsbCloudApp.Services
/// <returns>emptyList if nothing found</returns>
Task<IEnumerable<Tdto>> GetByIdWellAsync(IEnumerable<int> idsWells, CancellationToken token);
}
#nullable disable
}

View File

@ -4,8 +4,6 @@ using System.Collections.Generic;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Отслеживание и сбор статистики по запросам
/// </summary>
@ -59,5 +57,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
IEnumerable<RequestLogUserDto> GetUsersStat(int? take);
}
#nullable disable
}

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис рекомендаций новых уставок для панели оператора САУБ
/// </summary>

View File

@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
#nullable enable
namespace AsbCloudApp.Services
{
/// <summary>
@ -22,5 +21,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Task<IEnumerable<TelemetryDataSaubStatDto>> GetTelemetryDataStatAsync(int idTelemetry, CancellationToken token);
}
}
#nullable disable
}

View File

@ -4,7 +4,6 @@ using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
#nullable enable
namespace AsbCloudApp.Services
{
/// <summary>
@ -36,5 +35,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Task<int> UpdateDataAsync(string uid, IEnumerable<TDto> dtos, CancellationToken token);
}
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис телеметрии
/// </summary>
@ -82,6 +81,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Task<int> MergeAsync(int from, int to, CancellationToken token);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// сервис пользователей телеметрии
/// </summary>
@ -37,5 +36,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Task UpsertAsync(string uid, IEnumerable<TelemetryUserDto> dtos, CancellationToken token = default);
}
#nullable disable
}

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис "Визуализация траектории 3D"
/// </summary>
@ -19,5 +18,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Task<IEnumerable<TrajectoryVisualizationDto>> GetTrajectoryAsync(int idWell, CancellationToken token);
}
#nullable disable
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// Сервис "Дело скважины"
/// </summary>
@ -52,5 +51,4 @@ namespace AsbCloudApp.Services
/// <returns>count of notified publishers</returns>
Task<int> ReNotifyPublishersAsync(int idWell, int idUser, int idCategory, CancellationToken token);
}
#nullable disable
}

View File

@ -7,7 +7,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
#nullable enable
/// <summary>
/// сервис скважин
/// </summary>
@ -104,5 +103,4 @@ namespace AsbCloudApp.Services
/// <returns></returns>
Task<IEnumerable<DepositBranchDto>> GetWellTreeAsync(int idCompany, CancellationToken token);
}
#nullable disable
}

View File

@ -8,7 +8,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services.Subsystems
{
#nullable enable
/// <summary>
/// Получение инфо о наработке подсистем
/// </summary>
@ -66,5 +65,4 @@ namespace AsbCloudApp.Services.Subsystems
/// <returns></returns>
Task<IEnumerable<SubsystemActiveWellStatDto>> GetStatByActiveWells(IEnumerable<int> wellIds, CancellationToken token);
}
#nullable disable
}

View File

@ -5,7 +5,6 @@ using System.Threading.Tasks;
namespace AsbCloudApp.Services.Subsystems
{
#nullable enable
// TODO: move this to repositories
/// <summary>
@ -21,5 +20,4 @@ namespace AsbCloudApp.Services.Subsystems
/// <returns></returns>
Task<IEnumerable<SubsystemDto>?> GetSubsystemAsync(int? idWell, CancellationToken token);
}
#nullable disable
}