forked from ddrilling/AsbCloudServer
fix WellInfoDto. Add well Id.
This commit is contained in:
parent
d9fcfd862e
commit
56e02ffdd8
@ -8,9 +8,6 @@ namespace AsbCloudApp.Data
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class WellDto : WellInfoDto, IMapPoint, IId
|
public class WellDto : WellInfoDto, IMapPoint, IId
|
||||||
{
|
{
|
||||||
/// <inheritdoc/>
|
|
||||||
public int Id { get; set; }
|
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public double? Latitude { get; set; }
|
public double? Latitude { get; set; }
|
||||||
|
|
||||||
|
@ -3,8 +3,11 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// базовая информация о скважине
|
/// базовая информация о скважине
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class WellInfoDto
|
public class WellInfoDto: IId
|
||||||
{
|
{
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public int Id { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Название
|
/// Название
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user