2023-04-03 20:01:18 +04:00
|
|
|
|
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;
|
|
|
|
|
|
2023-05-17 21:29:39 +04:00
|
|
|
|
public string Email { get; set; } = string.Empty;
|
2023-04-03 20:01:18 +04:00
|
|
|
|
|
|
|
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|