using RouteGuideContracts.BindingModels; using RouteGuideContracts.SearchModels; using RouteGuideContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RouteGuideContracts.BusinessLogicsContracts { /// /// Интерфейс для описания работы бизнес-логики для остановок /// public interface IStopLogic { /// /// Получение полного списка /// /// List GetFullList(); /// /// Получение фильтрованного списка /// /// /// List GetFilteredList(StopSearchModel model); /// /// Получение элемента /// /// /// StopViewModel? GetElement(StopSearchModel model); /// /// Добавление элемента /// /// /// StopViewModel? Insert(StopBindingModel model); /// /// Редактирование элемента /// /// /// StopViewModel? Update(StopBindingModel model); /// /// Удаление элемента /// /// /// StopViewModel? Delete(StopBindingModel model); } }