using SushiDataModels; namespace SushiContracts.BindingModels { public class EmployeeBindingModel : IEmployeeModel { public string EmployeeName { get; set; } = string.Empty; public string EmployeePosition { get; set; } = string.Empty; public long EmployeePhone { get; set; } public int Id { get; set; } } }