DD.WellWorkover.Cloud/AsbCloudApp/Repositories/ITrajectoryNnbRepository.cs
Оля Бизюкова 81bd89aafc Рефакторинг
2023-11-22 10:31:41 +05:00

13 lines
350 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using AsbCloudApp.Data;
namespace AsbCloudApp.Repositories
{
/// <summary>
/// репозиторий для работы с траекторией из ннб (фактической)
/// </summary>
/// <returns></returns>
public interface ITrajectoryNnbRepository : ITrajectoryRepository<TrajectoryGeoFactDto>
{
}
}