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 TeacherBindingModel : ITeacherModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2024-04-29 15:37:19 +04:00
|
|
|
|
public int UserId { get; set; }
|
2024-04-19 19:30:16 +04:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public string AcademicDegree { get; set; } = string.Empty;
|
|
|
|
|
public string Position { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|