2023-04-01 19:33:12 +04:00
|
|
|
|
using HotelContracts.BindingModels;
|
|
|
|
|
using HotelContracts.SearchModels;
|
|
|
|
|
using HotelContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace HotelContracts.BusinessLogicsContracts
|
2023-04-01 18:42:08 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IConferenceLogic
|
|
|
|
|
{
|
2023-04-01 19:33:12 +04:00
|
|
|
|
List<ConferenceViewModel>? ReadList(ConferenceSearchModel? model);
|
|
|
|
|
ConferenceViewModel? ReadElement(ConferenceSearchModel model);
|
|
|
|
|
bool Create(ConferenceBindingModel model);
|
|
|
|
|
bool Update(ConferenceBindingModel model);
|
|
|
|
|
bool Delete(ConferenceBindingModel model);
|
2023-04-01 18:42:08 +04:00
|
|
|
|
}
|
|
|
|
|
}
|