Blame view

src/MapsDb/Interfaces/IServiceObjectDs.cs 467 Bytes
27918c1f   Administrator   add service object
1
2
3
4
5
6
7
8
9
  using System.Collections.Generic;
  using System.Threading.Tasks;
  using MapsModels.DsModels;
  using MapsDb.Models;
  namespace MapsDb.Interfaces
  {
      public interface IServiceObjectDs
      {
          Task<IList<ServiceObjectEditDsM>> GetIndexListAsync();
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
           
      }
  }