2024-04-19 19:30:16 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class DisciplineBindingModel : IDisciplineModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int TeacherId { get; set; }
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
2024-04-23 23:03:32 +04:00
|
|
|
|
public Dictionary<int, (IStudentModel, int)> StudentDisciplines { get; set; } = new();
|
2024-04-19 19:30:16 +04:00
|
|
|
|
}
|
|
|
|
|
}
|