16 lines
411 B
C#
16 lines
411 B
C#
using HotelDataModels.Models;
|
|
|
|
namespace HotelDataBaseImplement.Models
|
|
{
|
|
public class Member : IMemberModel
|
|
{
|
|
public string MemberFIO => throw new NotImplementedException();
|
|
|
|
public string Citizenship => throw new NotImplementedException();
|
|
|
|
public int OrganiserId => throw new NotImplementedException();
|
|
|
|
public int Id => throw new NotImplementedException();
|
|
}
|
|
}
|