2023-04-22 14:12:21 +03: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 01:31:48 +03:00
|
|
|
|
public string oldName { get; set; } = string.Empty;
|
2023-04-22 14:12:21 +03:00
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
2023-05-08 15:15:10 +03:00
|
|
|
|
public int number { get; set; }
|
2023-04-22 18:42:51 +03:00
|
|
|
|
public int? StatusId { get; set; }
|
2023-04-22 14:12:21 +03:00
|
|
|
|
|
2023-05-05 20:47:09 +03:00
|
|
|
|
public string? StatusTitle { get; set; } = string.Empty;
|
2023-04-22 14:12:21 +03:00
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|