25 lines
712 B
C#
25 lines
712 B
C#
|
using HotelDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HotelDataBaseImplement.Models
|
|||
|
{
|
|||
|
public class Headwaiter : IHeadwaiterModel
|
|||
|
{
|
|||
|
public string HeadwaiterFIO => throw new NotImplementedException();
|
|||
|
|
|||
|
public string HeadwaiterPassword => throw new NotImplementedException();
|
|||
|
|
|||
|
public string HeadwaiterLogin => throw new NotImplementedException();
|
|||
|
|
|||
|
public string HeadwaiterEmail => throw new NotImplementedException();
|
|||
|
|
|||
|
public string HeadwaiterNumber => throw new NotImplementedException();
|
|||
|
|
|||
|
public int Id => throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|