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

14 lines
366 B
C#
Raw Normal View History

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