6b2a9454
Yarik
SettlementAddress...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Collections.Generic;
using System.Threading.Tasks;
using MapsModels.DsModels;
using MapsDb.Models;
namespace MapsDb.Interfaces
{
public interface ISettlementAddressLinkDs
{
Task<IList<SettlementAddressLinkEditDsM>> GetIndexListAsync(PaginationDsM pagination);
Task<SettlementAddressLink> CreateAsync(SettlementAddressLinkEditDsM settlementAddressLink);
Task<SettlementAddressLink> UpdateAsync(SettlementAddressLinkEditDsM settlementAddressLink, int id);
Task<int> DeleteAsync(int Id);
}
}
|