2021-04-02 17:28:07 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System.Collections.Generic;
|
2021-05-14 17:02:29 +05:00
|
|
|
|
using System.Security.Claims;
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IWellService
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<WellDto> GetWellsByCustomer(int idCustomer);
|
2021-05-12 16:03:14 +05:00
|
|
|
|
IEnumerable<WellDto> GetTransmittingWells(int idCustomer);
|
2021-05-14 17:02:29 +05:00
|
|
|
|
bool CheckWellOwnership(int idCustomer, int wellId);
|
2021-04-02 17:28:07 +05:00
|
|
|
|
}
|
|
|
|
|
}
|