CourseWork_Hotel/Hotel/HotelDataBaseImplement/Models/Organiser.cs

20 lines
589 B
C#
Raw Normal View History

2023-04-01 20:12:06 +04:00
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();
}
}