2023-03-26 19:25:49 +04:00
|
|
|
|
using CaseAccountingDataModels.Models;
|
|
|
|
|
using System;
|
2023-03-26 18:10:44 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CaseAccountingContracts.BindingModels
|
|
|
|
|
{
|
2023-03-26 19:25:49 +04:00
|
|
|
|
public class CaseBindingModel : ICaseModel
|
2023-03-26 18:10:44 +04:00
|
|
|
|
{
|
2023-03-26 19:25:49 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Applicant { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Defendant { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Annotation { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public DateTime Date { get; set; } = DateTime.SpecifyKind(DateTime.Now, DateTimeKind.Utc);
|
|
|
|
|
|
|
|
|
|
public int SpecializationId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int UserId { get; set; }
|
2023-04-08 19:01:51 +04:00
|
|
|
|
|
|
|
|
|
public Dictionary<int, ILawyerModel> Lawyers { get; set; } = new();
|
2023-03-26 19:25:49 +04:00
|
|
|
|
}
|
2023-03-26 18:10:44 +04:00
|
|
|
|
}
|