forked from ddrilling/AsbCloudServer
17 lines
455 B
C#
17 lines
455 B
C#
using AsbCloudApp.Data;
|
||
using AsbCloudApp.Data.WITS;
|
||
using System.Collections.Generic;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AsbCloudApp.Repositories
|
||
{
|
||
/// <summary>
|
||
/// CRUD для работы с фактической траекторией из клиента
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public interface ITrajectoryNnbRepository : ITrajectoryRepository<TrajectoryGeoFactDto>
|
||
{
|
||
}
|
||
}
|