Добавьте файлы проекта.

This commit is contained in:
2024-03-13 21:27:23 +04:00
parent 6c3308b665
commit cbaa21c016
40 changed files with 4115 additions and 0 deletions

30
musicschoolapp/Course.cs Normal file
View File

@@ -0,0 +1,30 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код был создан из шаблона.
//
// Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
// Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
// </auto-generated>
//------------------------------------------------------------------------------
namespace musicschoolapp
{
using System;
using System.Collections.Generic;
public partial class Course
{
public Course()
{
this.Enrollment = new HashSet<Enrollment>();
}
public int CourseID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public int Duration { get; set; }
public decimal Price { get; set; }
public virtual ICollection<Enrollment> Enrollment { get; set; }
}
}