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

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

36
musicschoolapp/Student.cs Normal file
View File

@@ -0,0 +1,36 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код был создан из шаблона.
//
// Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
// Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
// </auto-generated>
//------------------------------------------------------------------------------
namespace musicschoolapp
{
using System;
using System.Collections.Generic;
public partial class Student
{
public Student()
{
this.Enrollment = new HashSet<Enrollment>();
}
public int StudentID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public System.DateTime BirthDate { get; set; }
public string Phone { get; set; }
public string Email { get; set; }
public byte[] photo { get; set; }
public bool toEnroll { get; set; }
public int grade { get; set; }
public Nullable<int> Id_instrument { get; set; }
public virtual ICollection<Enrollment> Enrollment { get; set; }
public virtual Instruments Instruments { get; set; }
}
}