IBusStopDs.cs 357 Bytes
using System.Collections.Generic;
using System.Threading.Tasks;
using MapsModels.DsModels;
using MapsDb.Models;
namespace MapsDb.Interfaces
{
    public interface IBusStopDs
    {
        Task<IList<BusStopEditDsM>> GetIndexListAsync();
        Task<BusStop> SaveAsync(BusStopEditDsM busStop, int? id = null);
        Task<int> DeleteAsync(int? Id);
    }
}