using SchoolDataModels.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.BindingModel { public class LessonBindingModel : ILessonModel { public int Id { get; set; } public string LessonName { get; set; } public double LessonPrice { get; set; } public int EmployeeId { get; set; } public string EmployeeName { get; set; } = string.Empty; } }