2023-04-22 15:12:21 +04:00
|
|
|
|
using DataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Contracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class HumanBM : IHuman
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2023-05-06 02:31:48 +04:00
|
|
|
|
public string oldName { get; set; } = string.Empty;
|
2023-04-22 15:12:21 +04:00
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
2023-05-08 16:15:10 +04:00
|
|
|
|
public int number { get; set; }
|
2023-04-22 19:42:51 +04:00
|
|
|
|
public int? StatusId { get; set; }
|
2023-04-22 15:12:21 +04:00
|
|
|
|
|
2023-05-05 21:47:09 +04:00
|
|
|
|
public string? StatusTitle { get; set; } = string.Empty;
|
2023-04-22 15:12:21 +04:00
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|