27 lines
689 B
C#
27 lines
689 B
C#
|
using SchoolAgainStudyDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SchoolAgainStudyContracts.BindingModel
|
|||
|
{
|
|||
|
public class TeacherBindingModel : ITeacher
|
|||
|
{
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Post { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Phone { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Login { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
|
|||
|
public Dictionary<int, IMaterial> TeacherMaterials { get; set; } = new();
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|