2024-05-01 18:40:30 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace LawCompanyDataModels.Models
|
|
|
|
|
{
|
2024-05-01 21:03:58 +04:00
|
|
|
|
public interface ILawyerModel : IId
|
|
|
|
|
{
|
|
|
|
|
string FIO { get; }
|
|
|
|
|
string Phone { get; }
|
|
|
|
|
string Email { get; }
|
2024-05-01 22:08:43 +04:00
|
|
|
|
public int? GuarantorId { get; }
|
2024-05-01 21:03:58 +04:00
|
|
|
|
}
|
2024-05-01 18:40:30 +04:00
|
|
|
|
}
|