рип лоу компани

This commit is contained in:
Софья Якобчук 2024-05-01 19:32:47 +04:00
parent 44ffb4a52b
commit 23e3485c31
11 changed files with 0 additions and 124 deletions

View File

@ -1,11 +0,0 @@
namespace LawCompanyDataModels.Enums
{
public enum CaseStatus
{
Неизвестен = -1,
Принято = 0,
АнализДелаИПодготовкаДокументов = 1,
СлушанияДела = 2,
ЗакрытиеДела = 3
}
}

View File

@ -1,7 +0,0 @@
namespace LawCompanyDataModels
{
public interface IId
{
int Id { get; }
}
}

View File

@ -1,16 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.17">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>

View File

@ -1,15 +0,0 @@
using LawCompanyDataModels.Enums;
namespace LawCompanyDataModels.Models
{
public interface ICaseModel : IId
{
Dictionary<int, IClientModel> CaseClients { get; }
string Name { get; }
CaseStatus Status { get; }
string CaseType { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
public int ExecutorId { get; }
}
}

View File

@ -1,10 +0,0 @@
namespace LawCompanyDataModels.Models
{
public interface IClientModel : IId
{
string FIO { get; }
string Phone { get; }
string Email { get; }
public int ExecutorId { get; }
}
}

View File

@ -1,11 +0,0 @@
namespace LawCompanyDataModels.Models
{
public interface IConsultationModel : IId
{
Dictionary<int, ILawyerModel> ConsultationLawyers { get; }
double Cost { get; }
DateTime ConsultationDate { get; }
public int CaseId { get; }
public int GuarantorId { get; }
}
}

View File

@ -1,9 +0,0 @@
namespace LawCompanyDataModels.Models
{
public interface IExecutorModel : IId
{
string FIO { get; }
string Email { get; }
string Password { get; }
}
}

View File

@ -1,9 +0,0 @@
namespace LawCompanyDataModels.Models
{
public interface IGuarantorModel : IId
{
string FIO { get; }
string Email { get; }
string Password { get; }
}
}

View File

@ -1,10 +0,0 @@
namespace LawCompanyDataModels.Models
{
public interface IHearingModel : IId
{
Dictionary<int, ILawyerModel> HearingLawyers { get; }
DateTime HearingDate { get; }
string Judge { get; }
public int GuarantorId { get; }
}
}

View File

@ -1,16 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawCompanyDataModels.Models
{
public interface ILawyerModel : IId
{
string FIO { get; }
string Phone { get; }
string Email { get; }
public int GuarantorId { get; }
}
}

View File

@ -1,10 +0,0 @@
namespace LawCompanyDataModels.Models
{
public interface IVisitModel : IId
{
Dictionary<int, IClientModel> VisitClients { get; }
DateTime VisitDate { get; }
int HearingId { get; }
public int ExecutorId { get; }
}
}