forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
24 lines
556 B
C#
24 lines
556 B
C#
using MagicCarpetContracts.DataModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.BuisnessLogicContracts;
|
|
|
|
public interface ITourBusinessLogicContract
|
|
{
|
|
List<TourDataModel> GetAllTours();
|
|
|
|
List<TourHistoryDataModel> GetTourHistoryByTour(string productId);
|
|
|
|
TourDataModel GetTourByData(string data);
|
|
|
|
void InsertTour(TourDataModel tourDataModel);
|
|
|
|
void UpdateTour(TourDataModel tourDataModel);
|
|
|
|
void DeleteTour(string id);
|
|
}
|