Blame view

src/MapsDb/Interfaces/IServiceObjectDs.cs 491 Bytes
27918c1f   Administrator   add service object
1
2
3
4
5
6
7
8
  using System.Collections.Generic;
  using System.Threading.Tasks;
  using MapsModels.DsModels;
  using MapsDb.Models;
  namespace MapsDb.Interfaces
  {
      public interface IServiceObjectDs
      {
25539461   Administrator   add pagination to...
9
          Task<IList<ServiceObjectEditDsM>> GetIndexListAsync(PaginationDsM pagination);
e02ee314   Administrator   add update and cr...
10
11
12
          Task<ServiceObject> CreateAsync(ServiceObjectEditDsM serviceObject);
          Task<ServiceObject> UpdateAsync(ServiceObjectEditDsM serviceObject, int id);
          Task<int> DeleteAsync(int Id);
27918c1f   Administrator   add service object
13
14
15
           
      }
  }