2024-03-09 18:07:43 +04:00
|
|
|
|
namespace HotelDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IConferenceBookingModel : IId
|
|
|
|
|
{
|
2024-03-30 23:02:24 +04:00
|
|
|
|
int? ConferenceId { get; }
|
2024-03-09 18:07:43 +04:00
|
|
|
|
int HeadwaiterId { get; }
|
2024-03-10 00:15:58 +04:00
|
|
|
|
DateTime? BookingDate { get; }
|
2024-04-30 23:13:30 +04:00
|
|
|
|
string NameHall { get; }
|
2024-03-10 00:15:58 +04:00
|
|
|
|
public Dictionary<int, ILunchModel> ConferenceBookingLunches { get; }
|
2024-03-09 18:07:43 +04:00
|
|
|
|
}
|
|
|
|
|
}
|