2023-04-03 18:46:26 +04:00
|
|
|
|
using SchoolDataModels.Models;
|
|
|
|
|
using System;
|
2023-04-03 18:26:05 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolContracts.ViewModels
|
|
|
|
|
{
|
2023-04-03 18:46:26 +04:00
|
|
|
|
public class LessonViewModel : ILessonModel
|
2023-04-03 18:26:05 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[DisplayName("Название занятия")]
|
2023-04-06 22:52:23 +04:00
|
|
|
|
public string LessonName { get; set; } = string.Empty;
|
2023-04-03 18:26:05 +04:00
|
|
|
|
[DisplayName("стоимость занятия")]
|
2023-04-06 22:52:23 +04:00
|
|
|
|
public double LessonPrice { get; set; }
|
|
|
|
|
public int EmployeeId { get; set; }
|
2023-04-03 18:26:05 +04:00
|
|
|
|
}
|
|
|
|
|
}
|