forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
25 lines
658 B
C#
25 lines
658 B
C#
using MagicCarpetContracts.AdapterContracts.OperationResponses;
|
|
using MagicCarpetContracts.BindingModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.AdapterContracts;
|
|
|
|
public interface ITourAdapter
|
|
{
|
|
TourOperationResponse GetList(bool includeDeleted);
|
|
|
|
TourOperationResponse GetHistory(string id);
|
|
|
|
TourOperationResponse GetElement(string data);
|
|
|
|
TourOperationResponse RegisterTour(TourBindingModel tourModel);
|
|
|
|
TourOperationResponse ChangeTourInfo(TourBindingModel tourModel);
|
|
|
|
TourOperationResponse RemoveTour(string id);
|
|
}
|