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

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

View File

@@ -0,0 +1,29 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код был создан из шаблона.
//
// Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
// Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
// </auto-generated>
//------------------------------------------------------------------------------
namespace musicschoolapp
{
using System;
using System.Collections.Generic;
public partial class Instruments
{
public Instruments()
{
this.Student = new HashSet<Student>();
}
public int Id_instrument { get; set; }
public string Name_instrument { get; set; }
public Nullable<System.DateTime> Date_receiving { get; set; }
public Nullable<bool> isPersonal { get; set; }
public virtual ICollection<Student> Student { get; set; }
}
}