SUBD/Sushi/SushiDataModels/IEmployeeModel.cs

10 lines
201 B
C#
Raw Normal View History

2024-04-04 03:47:27 +04:00
namespace SushiDataModels
{
public interface IEmployeeModel : IId
{
string EmployeeName { get; }
string EmployeePosition { get; }
long EmployeePhone { get; }
}
}