23 lines
367 B
C#
23 lines
367 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TransportCompanyDataModels.Models
|
|||
|
{
|
|||
|
public interface IClient : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
|
|||
|
string Surname { get; }
|
|||
|
|
|||
|
//отчество
|
|||
|
string Patronymic { get; }
|
|||
|
|
|||
|
string TelephoneNumber { get; }
|
|||
|
|
|||
|
string Email { get; }
|
|||
|
}
|
|||
|
}
|