DB/TransportGuideContracts/BusinessLogicsContracts/IStopLogic.cs

21 lines
575 B
C#
Raw Normal View History

2023-05-03 19:05:35 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-05-03 19:18:39 +04:00
using TransportGuideContracts.BindingModels;
using TransportGuideContracts.SearchModels;
using TransportGuideContracts.ViewModels;
2023-05-03 19:05:35 +04:00
namespace TransportGuideContracts.BusinessLogicsContracts
{
public interface IStopLogic
{
2023-05-03 19:18:39 +04:00
List<StopViewModel>? ReadList(StopSearchModel? model);
StopViewModel? ReadElement(StopSearchModel model);
bool Create(StopBindingModel model);
bool Update(StopBindingModel model);
bool Delete(StopBindingModel model);
2023-05-03 19:05:35 +04:00
}
}