20 lines
589 B
C#
20 lines
589 B
C#
|
using HotelDataModels.Models;
|
|||
|
|
|||
|
namespace HotelDataBaseImplement.Models
|
|||
|
{
|
|||
|
public class Organiser : IOrganiserModel
|
|||
|
{
|
|||
|
public string OrganiserFIO => throw new NotImplementedException();
|
|||
|
|
|||
|
public string OrganiserPassword => throw new NotImplementedException();
|
|||
|
|
|||
|
public string OrganiserLogin => throw new NotImplementedException();
|
|||
|
|
|||
|
public string OrganiserEmail => throw new NotImplementedException();
|
|||
|
|
|||
|
public string OrganiserNumber => throw new NotImplementedException();
|
|||
|
|
|||
|
public int Id => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|