DB/TransportGuideContracts/StoragesContracts/IStopStorage.cs

22 lines
642 B
C#
Raw Normal View History

2023-05-03 19:23:22 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-05-03 19:23:29 +04:00
using TransportGuideContracts.BindingModels;
using TransportGuideContracts.SearchModels;
using TransportGuideContracts.ViewModels;
2023-05-03 19:23:22 +04:00
namespace TransportGuideContracts.StoragesContracts
{
2023-05-03 19:23:29 +04:00
public interface IStopStorage
2023-05-03 19:23:22 +04:00
{
2023-05-03 19:23:29 +04:00
List<StopViewModel> GetFullList();
List<StopViewModel> GetFilteredList(StopSearchModel model);
StopViewModel? GetElement(StopSearchModel model);
StopViewModel? Insert(StopBindingModel model);
StopViewModel? Update(StopBindingModel model);
StopViewModel? Delete(StopBindingModel model);
2023-05-03 19:23:22 +04:00
}
}