SUBD/Sushi/SushiDataModels/IEmployeeModel.cs

10 lines
201 B
C#

namespace SushiDataModels
{
public interface IEmployeeModel : IId
{
string EmployeeName { get; }
string EmployeePosition { get; }
long EmployeePhone { get; }
}
}