16 lines
566 B
C#
16 lines
566 B
C#
using HotelContracts.BindingModels;
|
|
using HotelContracts.SearchModels;
|
|
using HotelContracts.ViewModels;
|
|
|
|
namespace HotelContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IConferenceBookingLogic
|
|
{
|
|
List<ConferenceBookingViewModel>? ReadList(ConferenceBookingSearchModel? model);
|
|
ConferenceBookingViewModel? ReadElement(ConferenceBookingSearchModel model);
|
|
bool Create(ConferenceBookingBindingModel model);
|
|
bool Update(ConferenceBookingBindingModel model);
|
|
bool Delete(ConferenceBookingBindingModel model);
|
|
}
|
|
}
|