DD.WellWorkover.Cloud/AsbCloudApp/Services/IWellService.cs
2021-07-21 15:22:58 +05:00

14 lines
362 B
C#

using AsbCloudApp.Data;
using System.Collections.Generic;
using System.Security.Claims;
namespace AsbCloudApp.Services
{
public interface IWellService
{
IEnumerable<WellDto> GetWellsByCompany(int idCompany);
IEnumerable<WellDto> GetTransmittingWells(int idCompany);
bool CheckWellOwnership(int idCompany, int wellId);
}
}