19 lines
417 B
C#
19 lines
417 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HotelDataModels.Models
|
|||
|
{
|
|||
|
public interface IConferenceBookingModel : IId
|
|||
|
{
|
|||
|
int AdministratorId { get; }
|
|||
|
int? ConferenceId { get; }
|
|||
|
string PlaceСonference { get; }
|
|||
|
DateTime? DateСonference { get; }
|
|||
|
public Dictionary<int, IDinnerModel> ConferenceBookingDinners { get; }
|
|||
|
|
|||
|
}
|
|||
|
}
|