ISEbd-22_CourseWork_School/School/SchoolContracts/BindingModels/AccountBindingModel.cs

16 lines
364 B
C#
Raw Normal View History

2024-05-01 17:54:58 +04:00
using SchoolDataModels;
namespace SchoolContracts.BindingModels
{
public class AccountBindingModel : IAccountModel
{
public int StudentByDisciplineId { get; set; }
public DateOnly DateOfAccount { get; set; } = DateOnly.FromDateTime(DateTime.Now);
public double Price { get; set; }
public int Id { get; set; }
}
}