DD.WellWorkover.Cloud/AsbCloudApp/Services/IWellService.cs

15 lines
434 B
C#
Raw Normal View History

using AsbCloudApp.Data;
using System.Collections.Generic;
namespace AsbCloudApp.Services
{
public interface IWellService
{
2021-07-21 15:22:58 +05:00
IEnumerable<WellDto> GetWellsByCompany(int idCompany);
IEnumerable<WellDto> GetTransmittingWells(int idCompany);
bool IsCompanyOwnsWell(int idCompany, int wellId);
2021-07-27 13:32:00 +05:00
IEnumerable<WellSectionDto> GetSections(int wellId);
object GetOperations(int wellId);
}
}