10 lines
201 B
C#
10 lines
201 B
C#
namespace SushiDataModels
|
|
{
|
|
public interface IEmployeeModel : IId
|
|
{
|
|
string EmployeeName { get; }
|
|
string EmployeePosition { get; }
|
|
long EmployeePhone { get; }
|
|
}
|
|
}
|