DD.WellWorkover.Cloud/AsbCloudApp/Services/IWellService.cs
2021-07-27 14:03:08 +05:00

15 lines
434 B
C#

using AsbCloudApp.Data;
using System.Collections.Generic;
namespace AsbCloudApp.Services
{
public interface IWellService
{
IEnumerable<WellDto> GetWellsByCompany(int idCompany);
IEnumerable<WellDto> GetTransmittingWells(int idCompany);
bool IsCompanyOwnsWell(int idCompany, int wellId);
IEnumerable<WellSectionDto> GetSections(int wellId);
object GetOperations(int wellId);
}
}