2023-03-29 22:21:19 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace TransportCompanyDataModels.Models
|
|
|
|
|
{
|
2023-03-29 23:22:17 +04:00
|
|
|
|
public interface IClientModel : IId
|
2023-03-29 22:21:19 +04:00
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
|
|
|
|
|
string Surname { get; }
|
|
|
|
|
|
|
|
|
|
//отчество
|
|
|
|
|
string Patronymic { get; }
|
|
|
|
|
|
2023-04-13 00:49:02 +04:00
|
|
|
|
string Telephone { get; }
|
2023-03-29 22:21:19 +04:00
|
|
|
|
|
|
|
|
|
string Email { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|