публики2
This commit is contained in:
parent
4cd7242439
commit
209cfc5f6b
@ -1,12 +1,11 @@
|
|||||||
using System;
|
namespace LawCompanyDataModels.Enums
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace LawCompanyDataModels.Enums
|
|
||||||
{
|
{
|
||||||
internal class CaseStatus
|
public enum CaseStatus
|
||||||
{
|
{
|
||||||
|
Неизвестен = -1,
|
||||||
|
Принято = 0,
|
||||||
|
АнализДелаИПодготовкаДокументов = 1,
|
||||||
|
СлушанияДела = 2,
|
||||||
|
ЗакрытиеДела = 3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,7 @@
|
|||||||
using System;
|
namespace LawCompanyDataModels
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace LawCompanyDataModels
|
|
||||||
{
|
{
|
||||||
internal class IId
|
public interface IId
|
||||||
{
|
{
|
||||||
|
int Id { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
using System;
|
using LawCompanyDataModels.Enums;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace LawCompanyDataModels.Models
|
namespace LawCompanyDataModels.Models
|
||||||
{
|
{
|
||||||
internal class ICaseModel
|
public interface ICaseModel : IId
|
||||||
{
|
{
|
||||||
|
Dictionary<int, IClientModel> CaseClients { get; }
|
||||||
|
string Name { get; }
|
||||||
|
CaseStatus Status { get; }
|
||||||
|
string CaseType { get; }
|
||||||
|
DateTime DateCreate { get; }
|
||||||
|
DateTime? DateImplement { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,9 @@
|
|||||||
using System;
|
namespace LawCompanyDataModels.Models
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace LawCompanyDataModels.Models
|
|
||||||
{
|
{
|
||||||
internal class IClientModel
|
public interface IClientModel : IId
|
||||||
{
|
{
|
||||||
|
string FIO { get; }
|
||||||
|
string Phone { get; }
|
||||||
|
string Email { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,9 @@
|
|||||||
using System;
|
namespace LawCompanyDataModels.Models
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace LawCompanyDataModels.Models
|
|
||||||
{
|
{
|
||||||
internal class IVisitModel
|
public interface IVisitModel : IId
|
||||||
{
|
{
|
||||||
|
Dictionary<int, IClientModel> VisitClients { get; }
|
||||||
|
DateTime VisitDate { get; }
|
||||||
|
int HearingId { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user