Compare commits
2 Commits
cf104dd677
...
448737fe3a
Author | SHA1 | Date | |
---|---|---|---|
448737fe3a | |||
2e39657b08 |
@ -7,13 +7,12 @@ using LawCompanyContracts.StoragesContracts;
|
||||
using LawCompanyContracts.ViewModels;
|
||||
using LawCompanyDatabaseImplement.Models;
|
||||
using LawCompanyDatabaseImplement.Implements;
|
||||
using DocumentFormat.OpenXml.Office2010.Excel;
|
||||
|
||||
namespace HotelBusinessLogic.BusinessLogics
|
||||
{
|
||||
public class ReportLogicExecutor : IReportExecutorLogic
|
||||
{
|
||||
private readonly IHearingStorage _hearingStorage;
|
||||
private readonly ILawyerStorage _lawyerStorage;
|
||||
private readonly IVisitStorage _visitStorage;
|
||||
private readonly IConsultationStorage _consultationStorage;
|
||||
private readonly ICaseStorage _caseStorage;
|
||||
@ -22,12 +21,10 @@ namespace HotelBusinessLogic.BusinessLogics
|
||||
private readonly AbstractSaveToWordExecutor _saveToWord;
|
||||
private readonly AbstractSaveToPdfExecutor _saveToPdf;
|
||||
|
||||
public ReportLogicExecutor(IHearingStorage hearingStorage, ILawyerStorage lawyerStorage,
|
||||
public ReportLogicExecutor(
|
||||
IVisitStorage visitStorage, IConsultationStorage consultationStorage, ICaseStorage caseStorage, IClientStorage clientStorage,
|
||||
AbstractSaveToExcelExecutor saveToExcel, AbstractSaveToWordExecutor saveToWord, AbstractSaveToPdfExecutor saveToPdf)
|
||||
{
|
||||
_hearingStorage = hearingStorage;
|
||||
_lawyerStorage = lawyerStorage;
|
||||
_visitStorage = visitStorage;
|
||||
_consultationStorage = consultationStorage;
|
||||
_clientStorage = clientStorage;
|
||||
@ -37,138 +34,134 @@ namespace HotelBusinessLogic.BusinessLogics
|
||||
_saveToPdf = saveToPdf;
|
||||
}
|
||||
|
||||
public List<ReportClientHearingViewModel> GetClientHearing(List<int> Ids)
|
||||
{
|
||||
if (Ids == null || !Ids.Any())
|
||||
{
|
||||
return new List<ReportClientHearingViewModel>();
|
||||
}
|
||||
public List<ReportClientHearingViewModel> GetClientHearing(List<int> ids)
|
||||
{
|
||||
var cases = _caseStorage.GetFullList();
|
||||
var consultations = _consultationStorage.GetFullList();
|
||||
|
||||
var clients = _clientStorage.GetFullList();
|
||||
var hearings = _hearingStorage.GetFullList();
|
||||
var visits = _visitStorage.GetFullList();
|
||||
var list = new List<ReportClientHearingViewModel>();
|
||||
|
||||
var filteredClients = clients.Where(c => Ids.Contains(c.Id)).ToList();
|
||||
var result = new List<ReportClientHearingViewModel>();
|
||||
|
||||
foreach (var client in filteredClients)
|
||||
{
|
||||
var record = new ReportClientHearingViewModel
|
||||
{
|
||||
FIO = client.FIO,
|
||||
Hearing = new List<Tuple<string, DateTime>>()
|
||||
};
|
||||
|
||||
var clientVisits = visits.Where(v => v.VisitClients.ContainsKey(client.Id)).ToList();
|
||||
foreach (var visit in clientVisits)
|
||||
{
|
||||
if (visit.HearingId.HasValue)
|
||||
{
|
||||
var hearing = hearings.FirstOrDefault(h => h.Id == visit.HearingId.Value);
|
||||
if (hearing != null)
|
||||
{
|
||||
record.Hearing.Add(new Tuple<string, DateTime>(hearing.Judge, hearing.HearingDate));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
result.Add(record);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
public List<ReportClientsViewModel> GetClients(ReportExecutorBindingModel model)
|
||||
{
|
||||
var listAll = new List<ReportClientsViewModel>();
|
||||
|
||||
// Получаем список всех дел для указанного исполнителя и за указанный период
|
||||
var cases = _caseStorage.GetFilteredList(new CaseSearchModel
|
||||
foreach (var id in ids)
|
||||
{
|
||||
ExecutorId = model.ExecutorId,
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo
|
||||
});
|
||||
var clients = _clientStorage.GetFilteredList(new ClientSearchModel { Id = id });
|
||||
|
||||
// Добавляем информацию о клиентах из дел
|
||||
foreach (var _case in cases)
|
||||
{
|
||||
foreach (var cc in _case.CaseClients.Values)
|
||||
if (clients.Count == 0)
|
||||
continue;
|
||||
|
||||
var client = clients.First();
|
||||
var record = new ReportClientHearingViewModel
|
||||
{
|
||||
listAll.Add(new ReportClientsViewModel
|
||||
FIO = client.FIO,
|
||||
Hearing = new List<Tuple<string, DateTime>>()
|
||||
};
|
||||
|
||||
foreach (var cas in cases)
|
||||
{
|
||||
if (!cas.CaseClients.ContainsKey(client.Id))
|
||||
{
|
||||
FIO = cc.FIO,
|
||||
Name = _case.Name,
|
||||
Status = _case.Status
|
||||
});
|
||||
foreach (var cons in consultations)
|
||||
{
|
||||
if (cons.CaseId.Equals(cas.Id))
|
||||
{
|
||||
record.Hearing.Add(new Tuple<string, DateTime>(cas.Name, cons.ConsultationDate));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
list.Add(record);
|
||||
}
|
||||
|
||||
// Получаем список всех консультаций для указанного исполнителя и за указанный период
|
||||
var consultations = _consultationStorage.GetFilteredList(new ConsultationSearchModel
|
||||
{
|
||||
GuarantorId = model.ExecutorId,
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo
|
||||
});
|
||||
|
||||
// Добавляем информацию о клиентах из консультаций
|
||||
foreach (var consultation in consultations)
|
||||
{
|
||||
foreach (var cc in consultation.Case.CaseClients.Values)
|
||||
{
|
||||
listAll.Add(new ReportClientsViewModel
|
||||
{
|
||||
FIO = cc.FIO,
|
||||
ConsultationDate = consultation.ConsultationDate,
|
||||
Cost = consultation.Cost
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return listAll;
|
||||
return list;
|
||||
}
|
||||
|
||||
public void SaveClientHearingToExcelFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
_saveToExcel.CreateReport(new ExcelInfoExecutor
|
||||
{
|
||||
FileName = model.FileName,
|
||||
Title = "Список слушаний",
|
||||
ClientHearings = GetClientHearing(model.Ids)
|
||||
});
|
||||
}
|
||||
public List<ReportClientsViewModel> GetClients(ReportExecutorBindingModel model)
|
||||
{
|
||||
var list = new List<ReportClientsViewModel>();
|
||||
var clients = _clientStorage.GetFilteredList(new ClientSearchModel
|
||||
{
|
||||
ExecutorId = model.ExecutorId
|
||||
});
|
||||
|
||||
public void SaveClientHearingToWordFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
_saveToWord.CreateDoc(new WordInfoExecutor
|
||||
{
|
||||
FileName = model.FileName,
|
||||
Title = "Список слушаний",
|
||||
ClientHearings = GetClientHearing(model.Ids)
|
||||
});
|
||||
}
|
||||
var visits = _visitStorage.GetFilteredList(new VisitSearchModel
|
||||
{
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo
|
||||
});
|
||||
|
||||
public void SaveClientsToPdfFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
if (model.DateFrom == null)
|
||||
{
|
||||
throw new ArgumentException("Дата начала не задана");
|
||||
}
|
||||
var cases = _caseStorage.GetFilteredList(new CaseSearchModel
|
||||
{
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo
|
||||
});
|
||||
|
||||
if (model.DateTo == null)
|
||||
{
|
||||
throw new ArgumentException("Дата окончания не задана");
|
||||
}
|
||||
_saveToPdf.CreateDoc(new PdfInfoExecutor
|
||||
{
|
||||
FileName = model.FileName,
|
||||
Title = "Список клиентов",
|
||||
DateFrom = model.DateFrom!.Value,
|
||||
DateTo = model.DateTo!.Value,
|
||||
Clients = GetClients(model)
|
||||
});
|
||||
}
|
||||
}
|
||||
foreach (var client in clients)
|
||||
{
|
||||
var record = new ReportClientsViewModel
|
||||
{
|
||||
FIO = client.FIO,
|
||||
CaseName = new List<string>(),
|
||||
VisitDate = new List<DateTime>()
|
||||
};
|
||||
|
||||
foreach (var cas in cases)
|
||||
{
|
||||
if (!cas.CaseClients.ContainsKey(client.Id))
|
||||
{
|
||||
record.CaseName.Add(cas.Name);
|
||||
}
|
||||
}
|
||||
foreach (var vis in visits)
|
||||
{
|
||||
if (!vis.VisitClients.ContainsKey(client.Id))
|
||||
{
|
||||
record.VisitDate.Add(vis.VisitDate);
|
||||
}
|
||||
}
|
||||
list.Add(record);
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
public void SaveClientHearingToExcelFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
_saveToExcel.CreateReport(new ExcelInfoExecutor
|
||||
{
|
||||
FileName = model.FileName,
|
||||
Title = "Список дел",
|
||||
ClientHearings = GetClientHearing(model.Ids)
|
||||
});
|
||||
}
|
||||
|
||||
public void SaveClientHearingToWordFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
_saveToWord.CreateDoc(new WordInfoExecutor
|
||||
{
|
||||
FileName = model.FileName,
|
||||
Title = "Список дел",
|
||||
ClientHearings = GetClientHearing(model.Ids)
|
||||
});
|
||||
}
|
||||
|
||||
public void SaveClientsToPdfFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
if (model.DateFrom == null)
|
||||
{
|
||||
throw new ArgumentException("Дата начала не задана");
|
||||
}
|
||||
|
||||
if (model.DateTo == null)
|
||||
{
|
||||
throw new ArgumentException("Дата окончания не задана");
|
||||
}
|
||||
_saveToPdf.CreateDoc(new PdfInfoExecutor
|
||||
{
|
||||
FileName = model.FileName,
|
||||
Title = "Список клиентов",
|
||||
DateFrom = model.DateFrom!.Value,
|
||||
DateTo = model.DateTo!.Value,
|
||||
Clients = GetClients(model)
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -6,29 +6,32 @@ using LawCompanyContracts.SearchModels;
|
||||
using LawCompanyContracts.StoragesContracts;
|
||||
using LawCompanyContracts.ViewModels;
|
||||
using LawCompanyDatabaseImplement.Models;
|
||||
using DocumentFormat.OpenXml.Office2010.Excel;
|
||||
using LawCompanyDatabaseImplement;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace LawCompanyBusinessLogic.BusinessLogics
|
||||
{
|
||||
public class ReportLogicGuarantor : IReportGuarantorLogic
|
||||
{
|
||||
private readonly IVisitStorage _visitStorage;
|
||||
private readonly IClientStorage _clientStorage;
|
||||
private readonly ICaseStorage _caseStorage;
|
||||
private readonly IConsultationStorage _consultationStorage;
|
||||
private readonly IHearingStorage _hearingStorage;
|
||||
private readonly ILawyerStorage _lawyerStorage;
|
||||
private readonly AbstractSaveToExcelGuarantor _saveToExcel;
|
||||
private readonly AbstractSaveToWordGuarantor _saveToWord;
|
||||
private readonly AbstractSaveToPdfGuarantor _saveToPdf;
|
||||
|
||||
public ReportLogicGuarantor(IVisitStorage visitStorage, IClientStorage clientStorage, ICaseStorage caseStorage,
|
||||
IConsultationStorage consultationStorage, IHearingStorage hearingStorage,
|
||||
public ReportLogicGuarantor(IVisitStorage visitStorage, ICaseStorage caseStorage,
|
||||
IConsultationStorage consultationStorage, IHearingStorage hearingStorage, ILawyerStorage lawyerStorage,
|
||||
AbstractSaveToExcelGuarantor saveToExcel, AbstractSaveToWordGuarantor saveToWord, AbstractSaveToPdfGuarantor saveToPdf)
|
||||
{
|
||||
_visitStorage = visitStorage;
|
||||
_clientStorage = clientStorage;
|
||||
_caseStorage = caseStorage;
|
||||
_consultationStorage = consultationStorage;
|
||||
_hearingStorage = hearingStorage;
|
||||
_lawyerStorage = lawyerStorage;
|
||||
_saveToExcel = saveToExcel;
|
||||
_saveToWord = saveToWord;
|
||||
_saveToPdf = saveToPdf;
|
||||
@ -41,92 +44,106 @@ namespace LawCompanyBusinessLogic.BusinessLogics
|
||||
return new List<ReportLawyerHearingViewModel>();
|
||||
}
|
||||
|
||||
var clients = _clientStorage.GetFullList();
|
||||
var hearings = _hearingStorage.GetFullList();
|
||||
var visits = _visitStorage.GetFullList();
|
||||
using var context = new LawCompanyDatabase();
|
||||
|
||||
var filteredClients = clients.Where(c => Ids.Contains(c.Id)).ToList();
|
||||
var result = new List<ReportLawyerHearingViewModel>();
|
||||
var hearings = context.Hearings
|
||||
.Include(h => h.Lawyers)
|
||||
.ToList();
|
||||
|
||||
foreach (var client in filteredClients)
|
||||
{
|
||||
var record = new ReportLawyerHearingViewModel
|
||||
{
|
||||
FIO = client.FIO,
|
||||
Hearing = new List<Tuple<string, DateTime>>()
|
||||
};
|
||||
var visits = context.Visits
|
||||
.ToList();
|
||||
|
||||
var clientVisits = visits.Where(v => v.VisitClients.ContainsKey(client.Id)).ToList();
|
||||
foreach (var visit in clientVisits)
|
||||
{
|
||||
if (visit.HearingId.HasValue)
|
||||
{
|
||||
var hearing = hearings.FirstOrDefault(h => h.Id == visit.HearingId.Value);
|
||||
if (hearing != null)
|
||||
{
|
||||
record.Hearing.Add(new Tuple<string, DateTime>(hearing.Judge, hearing.HearingDate));
|
||||
}
|
||||
}
|
||||
}
|
||||
var hearingLawyers = context.HearingLawyers
|
||||
.Include(hl => hl.Lawyer)
|
||||
.Where(hl => Ids.Contains(hl.LawyerId))
|
||||
.ToList();
|
||||
|
||||
result.Add(record);
|
||||
}
|
||||
var lawyerHearingsDict = hearingLawyers
|
||||
.GroupBy(hl => hl.HearingId)
|
||||
.ToDictionary(g => g.Key, g => g.Select(hl => hl.LawyerId).ToList());
|
||||
|
||||
return result;
|
||||
}
|
||||
var list = new List<ReportLawyerHearingViewModel>();
|
||||
|
||||
public List<ReportLawyersViewModel> GetLawyers(ReportGuarantorBindingModel model)
|
||||
{
|
||||
var listAll = new List<ReportLawyersViewModel>();
|
||||
foreach (var id in Ids)
|
||||
{
|
||||
var lawyer = context.Lawyers
|
||||
.FirstOrDefault(l => l.Id == id);
|
||||
|
||||
// Получаем список всех дел для указанного исполнителя и за указанный период
|
||||
var cases = _caseStorage.GetFilteredList(new CaseSearchModel
|
||||
{
|
||||
ExecutorId = model.GuarantorId,
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo
|
||||
});
|
||||
if (lawyer == null)
|
||||
continue;
|
||||
|
||||
// Добавляем информацию о клиентах из дел
|
||||
foreach (var _case in cases)
|
||||
{
|
||||
foreach (var cc in _case.CaseClients.Values)
|
||||
{
|
||||
listAll.Add(new ReportLawyersViewModel
|
||||
{
|
||||
FIO = cc.FIO,
|
||||
Name = _case.Name,
|
||||
Status = _case.Status
|
||||
});
|
||||
}
|
||||
}
|
||||
var record = new ReportLawyerHearingViewModel
|
||||
{
|
||||
FIO = lawyer.FIO,
|
||||
Visits = new List<Tuple<string, DateTime>>()
|
||||
};
|
||||
|
||||
// Получаем список всех консультаций для указанного исполнителя и за указанный период
|
||||
var consultations = _consultationStorage.GetFilteredList(new ConsultationSearchModel
|
||||
{
|
||||
GuarantorId = model.GuarantorId,
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo
|
||||
});
|
||||
foreach (var hearing in hearings)
|
||||
{
|
||||
if (lawyerHearingsDict.TryGetValue(hearing.Id, out var lawyerIds) && lawyerIds.Contains(id))
|
||||
{
|
||||
foreach (var visit in visits)
|
||||
{
|
||||
record.Visits.Add(new Tuple<string, DateTime>(hearing.Judge, visit.VisitDate));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Добавляем информацию о клиентах из консультаций
|
||||
foreach (var consultation in consultations)
|
||||
{
|
||||
foreach (var cc in consultation.Case.CaseClients.Values)
|
||||
{
|
||||
listAll.Add(new ReportLawyersViewModel
|
||||
{
|
||||
FIO = cc.FIO,
|
||||
ConsultationDate = consultation.ConsultationDate,
|
||||
Cost = consultation.Cost
|
||||
});
|
||||
}
|
||||
}
|
||||
list.Add(record);
|
||||
}
|
||||
|
||||
return listAll;
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
public void SaveLawyerHearingToExcelFile(ReportGuarantorBindingModel model)
|
||||
public List<ReportLawyersViewModel> GetLawyers(ReportGuarantorBindingModel model)
|
||||
{
|
||||
var list = new List<ReportLawyersViewModel>();
|
||||
|
||||
var consultations = _consultationStorage.GetFilteredList(new ConsultationSearchModel
|
||||
{
|
||||
GuarantorId = model.GuarantorId,
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo
|
||||
});
|
||||
|
||||
var lawyers = _lawyerStorage.GetFilteredList(new LawyerSearchModel { GuarantorId = model.GuarantorId });
|
||||
|
||||
var hearings = _hearingStorage.GetFilteredList(new HearingSearchModel
|
||||
{
|
||||
GuarantorId = model.GuarantorId,
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo
|
||||
});
|
||||
|
||||
foreach (LawyerViewModel lawyer in lawyers)
|
||||
{
|
||||
var record = new ReportLawyersViewModel
|
||||
{
|
||||
FIO = lawyer.FIO,
|
||||
Consultation = new List<(DateTime ConsultationDate, double Price)>(),
|
||||
Hearing = new List<(DateTime HearingDate, string Judge)>()
|
||||
};
|
||||
|
||||
foreach (var consultation in consultations)
|
||||
{
|
||||
if (!consultation.ConsultationLawyers.ContainsKey(lawyer.Id))
|
||||
{
|
||||
record.Consultation.Add(new(consultation.ConsultationDate, consultation.Cost));
|
||||
}
|
||||
}
|
||||
foreach (var hearing in hearings)
|
||||
{
|
||||
if (!hearing.HearingLawyers.ContainsKey(lawyer.Id))
|
||||
{
|
||||
record.Hearing.Add(new(hearing.HearingDate, hearing.Judge));
|
||||
}
|
||||
}
|
||||
list.Add(record);
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
public void SaveLawyerHearingToExcelFile(ReportGuarantorBindingModel model)
|
||||
{
|
||||
_saveToExcel.CreateReport(new ExcelInfoGuarantor
|
||||
{
|
||||
|
@ -42,7 +42,7 @@ namespace LawCompanyBusinessLogic.OfficePackage
|
||||
|
||||
rowIndex++;
|
||||
|
||||
foreach (var conference in mc.Hearing)
|
||||
foreach (var conference in mc.Visits)
|
||||
{
|
||||
InsertCellInWorksheet(new ExcelCellParameters
|
||||
{
|
||||
|
@ -1,85 +1,67 @@
|
||||
using LawCompanyBusinessLogic.OfficePackage.HelperEnums;
|
||||
using LawCompanyBusinessLogic.OfficePackage.HelperModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace LawCompanyBusinessLogic.OfficePackage
|
||||
{
|
||||
public abstract class AbstractSaveToPdfExecutor
|
||||
{
|
||||
public void CreateDoc(PdfInfoExecutor info)
|
||||
{
|
||||
CreatePdf(info);
|
||||
public abstract class AbstractSaveToPdfExecutor
|
||||
{
|
||||
public void CreateDoc(PdfInfoExecutor info)
|
||||
{
|
||||
CreatePdf(info);
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = info.Title,
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = $"с{info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
CreateTable(new List<string> { "2cm", "3cm", "6cm", "3cm" });
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> {"Имя клиента", "Дело", "Дата консультации" },
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
foreach (var client in info.Clients)
|
||||
{
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { client.FIO, " ", " " },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
foreach (var cas in client.CaseName)
|
||||
{
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { " ", cas, " " },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
}
|
||||
foreach (var vis in client.VisitDate)
|
||||
{
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { " ", " ", vis.ToShortDateString() },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = info.Title,
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
SavePdf(info);
|
||||
}
|
||||
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = $"с {info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
|
||||
CreateTable(new List<string> { "4cm", "5cm", "3cm", "4cm", "2cm" });
|
||||
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { "ФИО клиента", "Дата консультации", "Стоимость консультации", "Название дела", "Статус дела" },
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
|
||||
foreach (var member in info.Clients)
|
||||
{
|
||||
bool IsDate = true;
|
||||
if (member.ConsultationDate.ToShortDateString() == "01.01.0001")
|
||||
{
|
||||
IsDate = false;
|
||||
}
|
||||
|
||||
bool IsCost = true;
|
||||
if (member.Cost.ToString() == "0")
|
||||
{
|
||||
IsCost = false;
|
||||
}
|
||||
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string>
|
||||
{
|
||||
member.FIO,
|
||||
IsDate is true ? member.ConsultationDate.ToShortDateString() : string.Empty,
|
||||
IsCost is true ? member.Cost.ToString() : string.Empty,
|
||||
member.Name,
|
||||
member.Status.ToString(),
|
||||
},
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Left
|
||||
});
|
||||
}
|
||||
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = $"Итого: {info.Clients.Sum(x => x.Cost)}\t",
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Rigth
|
||||
});
|
||||
|
||||
SavePdf(info);
|
||||
}
|
||||
|
||||
protected abstract void CreatePdf(PdfInfoExecutor info);
|
||||
protected abstract void CreateParagraph(PdfParagraph paragraph);
|
||||
protected abstract void CreateTable(List<string> columns);
|
||||
protected abstract void CreateRow(PdfRowParameters rowParameters);
|
||||
protected abstract void SavePdf(PdfInfoExecutor info);
|
||||
}
|
||||
protected abstract void CreatePdf(PdfInfoExecutor info);
|
||||
protected abstract void CreateParagraph(PdfParagraph paragraph);
|
||||
protected abstract void CreateTable(List<string> columns);
|
||||
protected abstract void CreateRow(PdfRowParameters rowParameters);
|
||||
protected abstract void SavePdf(PdfInfoExecutor info);
|
||||
}
|
||||
}
|
||||
|
@ -14,67 +14,82 @@ namespace LawCompanyBusinessLogic.OfficePackage
|
||||
{
|
||||
CreatePdf(info);
|
||||
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = info.Title,
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = info.Title,
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = $"с{info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
CreateTable(new List<string> { "3cm", "5cm", "5cm" });
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { "Юрист", "Цена консультации", "Дата консультации" },
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = $"с {info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
foreach (var ch in info.Lawyers)
|
||||
{
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { ch.FIO, " ", " " },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
|
||||
CreateTable(new List<string> { "4cm", "5cm", "3cm", "4cm", "2cm" });
|
||||
});
|
||||
foreach (var cons in ch.Consultation)
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { " ", cons.Price.ToString() + " рублей", cons.ConsultationDate.ToShortDateString() },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { " ", " ", "Итого: " + ch.Consultation.Count.ToString() },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Rigth
|
||||
});
|
||||
}
|
||||
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { "ФИО юриста", "Дата консультации", "Стоимость консультации", "Название дела", "Статус дела" },
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
CreateTable(new List<string> { "3cm", "5cm", "5cm" });
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { "Юрист", "Суд", "Дата слушания" },
|
||||
Style = "NormalTitle",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
});
|
||||
foreach (var ch in info.Lawyers)
|
||||
{
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { ch.FIO, " ", " " },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||||
|
||||
foreach (var member in info.Lawyers)
|
||||
{
|
||||
bool IsDate = true;
|
||||
if (member.ConsultationDate.ToShortDateString() == "01.01.0001")
|
||||
{
|
||||
IsDate = false;
|
||||
}
|
||||
|
||||
bool IsCost = true;
|
||||
if (member.Cost.ToString() == "0")
|
||||
{
|
||||
IsCost = false;
|
||||
}
|
||||
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string>
|
||||
{
|
||||
member.FIO,
|
||||
IsDate is true ? member.ConsultationDate.ToShortDateString() : string.Empty,
|
||||
IsCost is true ? member.Cost.ToString() : string.Empty,
|
||||
member.Name,
|
||||
member.Status.ToString(),
|
||||
},
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Left
|
||||
});
|
||||
}
|
||||
|
||||
CreateParagraph(new PdfParagraph
|
||||
{
|
||||
Text = $"Итого: {info.Lawyers.Sum(x => x.Cost)}\t",
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Rigth
|
||||
});
|
||||
|
||||
SavePdf(info);
|
||||
}
|
||||
});
|
||||
foreach (var hear in ch.Hearing)
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { " ", hear.Judge, hear.HearingDate.ToShortDateString() },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Left
|
||||
});
|
||||
CreateRow(new PdfRowParameters
|
||||
{
|
||||
Texts = new List<string> { " ", " ", "Итого: " + ch.Hearing.Count.ToString() },
|
||||
Style = "Normal",
|
||||
ParagraphAlignment = PdfParagraphAlignmentType.Rigth
|
||||
});
|
||||
}
|
||||
SavePdf(info);
|
||||
}
|
||||
|
||||
protected abstract void CreatePdf(PdfInfoGuarantor info);
|
||||
protected abstract void CreateParagraph(PdfParagraph paragraph);
|
||||
|
@ -37,7 +37,7 @@ namespace LawCompanyBusinessLogic.OfficePackage
|
||||
}
|
||||
});
|
||||
|
||||
foreach (var conference in mc.Hearing)
|
||||
foreach (var conference in mc.Visits)
|
||||
{
|
||||
CreateParagraph(new WordParagraph
|
||||
{
|
||||
|
@ -9,8 +9,8 @@ namespace LawCompanyBusinessLogic.OfficePackage.HelperModels
|
||||
{
|
||||
public class ExcelInfoExecutor
|
||||
{
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public List<ReportClientHearingViewModel> ClientHearings { get; set; } = new();
|
||||
}
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public List<ReportClientHearingViewModel> ClientHearings { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
@ -13,6 +13,6 @@ namespace LawCompanyBusinessLogic.OfficePackage.HelperModels
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public DateTime DateFrom { get; set; }
|
||||
public DateTime DateTo { get; set; }
|
||||
public List<ReportClientsViewModel> Clients { get; set; } = new();
|
||||
}
|
||||
public List<ReportClientsViewModel> Clients { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
@ -13,5 +13,5 @@ namespace LawCompanyContracts.BindingModels
|
||||
public DateTime? DateTo { get; set; }
|
||||
public List<int>? Ids { get; set; }
|
||||
public int ExecutorId { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ namespace LawCompanyContracts.BusinessLogicContracts
|
||||
public interface IReportExecutorLogic
|
||||
{
|
||||
List<ReportClientHearingViewModel> GetClientHearing(List<int> Ids);
|
||||
List<ReportClientsViewModel> GetClients(ReportExecutorBindingModel model);
|
||||
List<ReportClientsViewModel> GetClients(ReportExecutorBindingModel model);
|
||||
void SaveClientHearingToWordFile(ReportExecutorBindingModel model);
|
||||
void SaveClientHearingToExcelFile(ReportExecutorBindingModel model);
|
||||
void SaveClientsToPdfFile(ReportExecutorBindingModel model);
|
||||
|
@ -0,0 +1,8 @@
|
||||
namespace LawCompanyContracts.ViewModels
|
||||
{
|
||||
public class ClientVisitCountViewModel
|
||||
{
|
||||
public string FIO { get; set; } = string.Empty;
|
||||
public int VisitCount { get; set; }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
namespace LawCompanyContracts.ViewModels
|
||||
{
|
||||
public class LawyerHearingCountViewModel
|
||||
{
|
||||
public string FIO { get; set; } = string.Empty;
|
||||
public int HearingCount { get; set; }
|
||||
}
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace LawCompanyContracts.ViewModels
|
||||
{
|
||||
internal class ReportClientCaseViewModel
|
||||
{
|
||||
}
|
||||
}
|
@ -7,15 +7,10 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace LawCompanyContracts.ViewModels
|
||||
{
|
||||
public class ReportClientsViewModel
|
||||
{
|
||||
// клиент
|
||||
public string FIO { get; set; } = string.Empty;
|
||||
// дело
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public CaseStatus Status { get; set; } = CaseStatus.Неизвестен;
|
||||
// консультация
|
||||
public DateTime ConsultationDate { get; set; }
|
||||
public double Cost { get; set; }
|
||||
}
|
||||
}
|
||||
public class ReportClientsViewModel
|
||||
{
|
||||
public string FIO { get; set; } = string.Empty;
|
||||
public List<string> CaseName { get; set; } = new List<string>();
|
||||
public List<DateTime> VisitDate { get; set; } = new List<DateTime>();
|
||||
}
|
||||
}
|
@ -1,14 +1,8 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace LawCompanyContracts.ViewModels
|
||||
namespace LawCompanyContracts.ViewModels
|
||||
{
|
||||
public class ReportLawyerHearingViewModel
|
||||
public class ReportLawyerHearingViewModel
|
||||
{
|
||||
public string FIO { get; set; } = string.Empty;
|
||||
public List<Tuple<string, DateTime>> Hearing { get; set; } = new();
|
||||
public List<Tuple<string, DateTime>> Visits { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
@ -9,13 +9,8 @@ namespace LawCompanyContracts.ViewModels
|
||||
{
|
||||
public class ReportLawyersViewModel
|
||||
{
|
||||
// клиент
|
||||
public string FIO { get; set; } = string.Empty;
|
||||
// дело
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public CaseStatus Status { get; set; } = CaseStatus.Неизвестен;
|
||||
// консультация
|
||||
public DateTime ConsultationDate { get; set; }
|
||||
public double Cost { get; set; }
|
||||
}
|
||||
public string FIO { get; set; } = string.Empty;
|
||||
public List<(DateTime ConsultationDate, double Price)> Consultation { get; set; } = new();
|
||||
public List<(DateTime HearingDate, string Judge)> Hearing { get; set; } = new();
|
||||
}
|
||||
}
|
||||
|
@ -9,16 +9,17 @@ namespace LawCompanyDatabaseImplement.Implements
|
||||
{
|
||||
public class CaseStorage : ICaseStorage
|
||||
{
|
||||
public List<CaseViewModel> GetFullList()
|
||||
{
|
||||
using var context = new LawCompanyDatabase();
|
||||
return context.Cases.Include(x => x.CaseClients)
|
||||
.Include(x => x.Clients).ThenInclude(x => x.Client)
|
||||
.ToList()
|
||||
.Select(x => x.GetViewModel)
|
||||
.ToList();
|
||||
}
|
||||
public List<CaseViewModel> GetFilteredList(CaseSearchModel model)
|
||||
public List<CaseViewModel> GetFullList()
|
||||
{
|
||||
using var context = new LawCompanyDatabase();
|
||||
return context.Cases
|
||||
.Include(x => x.Clients).ThenInclude(x => x.Client)
|
||||
.ToList()
|
||||
.Select(x => x.GetViewModel)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
public List<CaseViewModel> GetFilteredList(CaseSearchModel model)
|
||||
{
|
||||
if (!model.Id.HasValue && !model.DateFrom.HasValue && !model.DateTo.HasValue
|
||||
&& !model.ExecutorId.HasValue)
|
||||
|
@ -12,13 +12,13 @@ namespace LawCompanyDatabaseImplement.Implements
|
||||
public List<ConsultationViewModel> GetFullList()
|
||||
{
|
||||
using var context = new LawCompanyDatabase();
|
||||
return context.Consultations
|
||||
.Include(x => x.Lawyers)
|
||||
.ThenInclude(x => x.Lawyer)
|
||||
.ToList()
|
||||
.Select(x => x.GetViewModel)
|
||||
.ToList();
|
||||
}
|
||||
return context.Consultations
|
||||
.Include(x => x.Lawyers)
|
||||
.ThenInclude(x => x.Lawyer)
|
||||
.ToList()
|
||||
.Select(x => x.GetViewModel)
|
||||
.ToList();
|
||||
}
|
||||
public List<ConsultationViewModel> GetFilteredList(ConsultationSearchModel model)
|
||||
{
|
||||
if (!model.Id.HasValue && !model.GuarantorId.HasValue)
|
||||
|
@ -1,545 +0,0 @@
|
||||
// <auto-generated />
|
||||
using System;
|
||||
using LawCompanyDatabaseImplement;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Metadata;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
[DbContext(typeof(LawCompanyDatabase))]
|
||||
[Migration("20240502102425_InitialCreate")]
|
||||
partial class InitialCreate
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("ProductVersion", "7.0.17")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
||||
|
||||
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Case", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("CaseType")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<DateTime>("DateCreate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<DateTime?>("DateImplement")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<int>("ExecutorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int>("Status")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ExecutorId");
|
||||
|
||||
b.ToTable("Cases");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.CaseClient", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("CaseId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("ClientId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("CaseId");
|
||||
|
||||
b.HasIndex("ClientId");
|
||||
|
||||
b.ToTable("CaseClients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Client", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Email")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int>("ExecutorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("FIO")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Phone")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ExecutorId");
|
||||
|
||||
b.ToTable("Clients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Consultation", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("CaseId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime>("ConsultationDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<double>("Cost")
|
||||
.HasColumnType("float");
|
||||
|
||||
b.Property<int>("GuarantorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("CaseId");
|
||||
|
||||
b.HasIndex("GuarantorId");
|
||||
|
||||
b.ToTable("Consultations");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.ConsultationLawyer", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("ConsultationId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("LawyerId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ConsultationId");
|
||||
|
||||
b.HasIndex("LawyerId");
|
||||
|
||||
b.ToTable("ConsultationLawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Executor", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Email")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("FIO")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Password")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Executors");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Guarantor", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Email")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("FIO")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Password")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Guarantors");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Hearing", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("GuarantorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime>("HearingDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<string>("Judge")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("GuarantorId");
|
||||
|
||||
b.ToTable("Hearings");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.HearingLawyer", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("HearingId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("LawyerId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("HearingId");
|
||||
|
||||
b.HasIndex("LawyerId");
|
||||
|
||||
b.ToTable("HearingLawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Lawyer", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Email")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("FIO")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int>("GuarantorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("Phone")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("GuarantorId");
|
||||
|
||||
b.ToTable("Lawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Visit", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("ExecutorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("HearingId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime>("VisitDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ExecutorId");
|
||||
|
||||
b.HasIndex("HearingId");
|
||||
|
||||
b.ToTable("Visits");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.VisitClient", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("ClientId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("VisitId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ClientId");
|
||||
|
||||
b.HasIndex("VisitId");
|
||||
|
||||
b.ToTable("VisitClients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Case", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Executor", null)
|
||||
.WithMany("Cases")
|
||||
.HasForeignKey("ExecutorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.CaseClient", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Case", "Case")
|
||||
.WithMany("Clients")
|
||||
.HasForeignKey("CaseId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Client", "Client")
|
||||
.WithMany("CaseClients")
|
||||
.HasForeignKey("ClientId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Case");
|
||||
|
||||
b.Navigation("Client");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Client", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Executor", null)
|
||||
.WithMany("Clients")
|
||||
.HasForeignKey("ExecutorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Consultation", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Case", "Case")
|
||||
.WithMany()
|
||||
.HasForeignKey("CaseId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Guarantor", null)
|
||||
.WithMany("Consultations")
|
||||
.HasForeignKey("GuarantorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Case");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.ConsultationLawyer", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Consultation", "Consultation")
|
||||
.WithMany("Lawyers")
|
||||
.HasForeignKey("ConsultationId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Lawyer", "Lawyer")
|
||||
.WithMany("ConsultationLawyers")
|
||||
.HasForeignKey("LawyerId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Consultation");
|
||||
|
||||
b.Navigation("Lawyer");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Hearing", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Guarantor", null)
|
||||
.WithMany("Hearings")
|
||||
.HasForeignKey("GuarantorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.HearingLawyer", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Hearing", "Hearing")
|
||||
.WithMany("Lawyers")
|
||||
.HasForeignKey("HearingId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Lawyer", "Lawyer")
|
||||
.WithMany("HearingLawyers")
|
||||
.HasForeignKey("LawyerId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Hearing");
|
||||
|
||||
b.Navigation("Lawyer");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Lawyer", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Guarantor", null)
|
||||
.WithMany("Lawyers")
|
||||
.HasForeignKey("GuarantorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Visit", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Executor", null)
|
||||
.WithMany("Visits")
|
||||
.HasForeignKey("ExecutorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Hearing", "Hearing")
|
||||
.WithMany()
|
||||
.HasForeignKey("HearingId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Hearing");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.VisitClient", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Client", "Client")
|
||||
.WithMany("ClientVisits")
|
||||
.HasForeignKey("ClientId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Visit", "Visit")
|
||||
.WithMany("Clients")
|
||||
.HasForeignKey("VisitId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Client");
|
||||
|
||||
b.Navigation("Visit");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Case", b =>
|
||||
{
|
||||
b.Navigation("Clients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Client", b =>
|
||||
{
|
||||
b.Navigation("CaseClients");
|
||||
|
||||
b.Navigation("ClientVisits");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Consultation", b =>
|
||||
{
|
||||
b.Navigation("Lawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Executor", b =>
|
||||
{
|
||||
b.Navigation("Cases");
|
||||
|
||||
b.Navigation("Clients");
|
||||
|
||||
b.Navigation("Visits");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Guarantor", b =>
|
||||
{
|
||||
b.Navigation("Consultations");
|
||||
|
||||
b.Navigation("Hearings");
|
||||
|
||||
b.Navigation("Lawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Hearing", b =>
|
||||
{
|
||||
b.Navigation("Lawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Lawyer", b =>
|
||||
{
|
||||
b.Navigation("ConsultationLawyers");
|
||||
|
||||
b.Navigation("HearingLawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Visit", b =>
|
||||
{
|
||||
b.Navigation("Clients");
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
}
|
@ -1,413 +0,0 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class InitialCreate : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Executors",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
FIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Password = table.Column<string>(type: "nvarchar(max)", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Executors", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Guarantors",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
FIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Password = table.Column<string>(type: "nvarchar(max)", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Guarantors", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Cases",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
Name = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
CaseType = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
DateCreate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
||||
DateImplement = table.Column<DateTime>(type: "datetime2", nullable: true),
|
||||
Status = table.Column<int>(type: "int", nullable: false),
|
||||
ExecutorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Cases", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Cases_Executors_ExecutorId",
|
||||
column: x => x.ExecutorId,
|
||||
principalTable: "Executors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Clients",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
FIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Phone = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
ExecutorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Clients", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Clients_Executors_ExecutorId",
|
||||
column: x => x.ExecutorId,
|
||||
principalTable: "Executors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Hearings",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
HearingDate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
||||
Judge = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
GuarantorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Hearings", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Hearings_Guarantors_GuarantorId",
|
||||
column: x => x.GuarantorId,
|
||||
principalTable: "Guarantors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Lawyers",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
FIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Phone = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
GuarantorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Lawyers", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Lawyers_Guarantors_GuarantorId",
|
||||
column: x => x.GuarantorId,
|
||||
principalTable: "Guarantors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Consultations",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
Cost = table.Column<double>(type: "float", nullable: false),
|
||||
ConsultationDate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
||||
CaseId = table.Column<int>(type: "int", nullable: false),
|
||||
GuarantorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Consultations", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Consultations_Cases_CaseId",
|
||||
column: x => x.CaseId,
|
||||
principalTable: "Cases",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_Consultations_Guarantors_GuarantorId",
|
||||
column: x => x.GuarantorId,
|
||||
principalTable: "Guarantors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "CaseClients",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
CaseId = table.Column<int>(type: "int", nullable: false),
|
||||
ClientId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_CaseClients", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_CaseClients_Cases_CaseId",
|
||||
column: x => x.CaseId,
|
||||
principalTable: "Cases",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_CaseClients_Clients_ClientId",
|
||||
column: x => x.ClientId,
|
||||
principalTable: "Clients",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.NoAction);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Visits",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
VisitDate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
||||
HearingId = table.Column<int>(type: "int", nullable: false),
|
||||
ExecutorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Visits", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Visits_Executors_ExecutorId",
|
||||
column: x => x.ExecutorId,
|
||||
principalTable: "Executors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_Visits_Hearings_HearingId",
|
||||
column: x => x.HearingId,
|
||||
principalTable: "Hearings",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "HearingLawyers",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
HearingId = table.Column<int>(type: "int", nullable: false),
|
||||
LawyerId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_HearingLawyers", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_HearingLawyers_Hearings_HearingId",
|
||||
column: x => x.HearingId,
|
||||
principalTable: "Hearings",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_HearingLawyers_Lawyers_LawyerId",
|
||||
column: x => x.LawyerId,
|
||||
principalTable: "Lawyers",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.NoAction);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "ConsultationLawyers",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
ConsultationId = table.Column<int>(type: "int", nullable: false),
|
||||
LawyerId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_ConsultationLawyers", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_ConsultationLawyers_Consultations_ConsultationId",
|
||||
column: x => x.ConsultationId,
|
||||
principalTable: "Consultations",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_ConsultationLawyers_Lawyers_LawyerId",
|
||||
column: x => x.LawyerId,
|
||||
principalTable: "Lawyers",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.NoAction);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "VisitClients",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
ClientId = table.Column<int>(type: "int", nullable: false),
|
||||
VisitId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_VisitClients", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_VisitClients_Clients_ClientId",
|
||||
column: x => x.ClientId,
|
||||
principalTable: "Clients",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_VisitClients_Visits_VisitId",
|
||||
column: x => x.VisitId,
|
||||
principalTable: "Visits",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.NoAction);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_CaseClients_CaseId",
|
||||
table: "CaseClients",
|
||||
column: "CaseId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_CaseClients_ClientId",
|
||||
table: "CaseClients",
|
||||
column: "ClientId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Cases_ExecutorId",
|
||||
table: "Cases",
|
||||
column: "ExecutorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Clients_ExecutorId",
|
||||
table: "Clients",
|
||||
column: "ExecutorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_ConsultationLawyers_ConsultationId",
|
||||
table: "ConsultationLawyers",
|
||||
column: "ConsultationId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_ConsultationLawyers_LawyerId",
|
||||
table: "ConsultationLawyers",
|
||||
column: "LawyerId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Consultations_CaseId",
|
||||
table: "Consultations",
|
||||
column: "CaseId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Consultations_GuarantorId",
|
||||
table: "Consultations",
|
||||
column: "GuarantorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_HearingLawyers_HearingId",
|
||||
table: "HearingLawyers",
|
||||
column: "HearingId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_HearingLawyers_LawyerId",
|
||||
table: "HearingLawyers",
|
||||
column: "LawyerId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Hearings_GuarantorId",
|
||||
table: "Hearings",
|
||||
column: "GuarantorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Lawyers_GuarantorId",
|
||||
table: "Lawyers",
|
||||
column: "GuarantorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_VisitClients_ClientId",
|
||||
table: "VisitClients",
|
||||
column: "ClientId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_VisitClients_VisitId",
|
||||
table: "VisitClients",
|
||||
column: "VisitId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Visits_ExecutorId",
|
||||
table: "Visits",
|
||||
column: "ExecutorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Visits_HearingId",
|
||||
table: "Visits",
|
||||
column: "HearingId");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable(
|
||||
name: "CaseClients");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "ConsultationLawyers");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "HearingLawyers");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "VisitClients");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Consultations");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Lawyers");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Clients");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Visits");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Cases");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Hearings");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Executors");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Guarantors");
|
||||
}
|
||||
}
|
||||
}
|
@ -1,543 +0,0 @@
|
||||
// <auto-generated />
|
||||
using System;
|
||||
using LawCompanyDatabaseImplement;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Metadata;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
[DbContext(typeof(LawCompanyDatabase))]
|
||||
[Migration("20240503003222_InitialCreate2")]
|
||||
partial class InitialCreate2
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("ProductVersion", "7.0.17")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
||||
|
||||
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Case", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("CaseType")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<DateTime>("DateCreate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<DateTime?>("DateImplement")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<int>("ExecutorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int>("Status")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ExecutorId");
|
||||
|
||||
b.ToTable("Cases");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.CaseClient", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("CaseId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("ClientId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("CaseId");
|
||||
|
||||
b.HasIndex("ClientId");
|
||||
|
||||
b.ToTable("CaseClients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Client", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Email")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int>("ExecutorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("FIO")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Phone")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ExecutorId");
|
||||
|
||||
b.ToTable("Clients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Consultation", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("CaseId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime>("ConsultationDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<double>("Cost")
|
||||
.HasColumnType("float");
|
||||
|
||||
b.Property<int>("GuarantorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("CaseId");
|
||||
|
||||
b.HasIndex("GuarantorId");
|
||||
|
||||
b.ToTable("Consultations");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.ConsultationLawyer", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("ConsultationId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("LawyerId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ConsultationId");
|
||||
|
||||
b.HasIndex("LawyerId");
|
||||
|
||||
b.ToTable("ConsultationLawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Executor", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Email")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("FIO")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Password")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Executors");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Guarantor", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Email")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("FIO")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Password")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Guarantors");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Hearing", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("GuarantorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime>("HearingDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<string>("Judge")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("GuarantorId");
|
||||
|
||||
b.ToTable("Hearings");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.HearingLawyer", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("HearingId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("LawyerId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("HearingId");
|
||||
|
||||
b.HasIndex("LawyerId");
|
||||
|
||||
b.ToTable("HearingLawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Lawyer", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Email")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("FIO")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int?>("GuarantorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("Phone")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("GuarantorId");
|
||||
|
||||
b.ToTable("Lawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Visit", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("ExecutorId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("HearingId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime>("VisitDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ExecutorId");
|
||||
|
||||
b.HasIndex("HearingId");
|
||||
|
||||
b.ToTable("Visits");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.VisitClient", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("ClientId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("VisitId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ClientId");
|
||||
|
||||
b.HasIndex("VisitId");
|
||||
|
||||
b.ToTable("VisitClients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Case", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Executor", null)
|
||||
.WithMany("Cases")
|
||||
.HasForeignKey("ExecutorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.CaseClient", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Case", "Case")
|
||||
.WithMany("Clients")
|
||||
.HasForeignKey("CaseId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Client", "Client")
|
||||
.WithMany("CaseClients")
|
||||
.HasForeignKey("ClientId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Case");
|
||||
|
||||
b.Navigation("Client");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Client", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Executor", null)
|
||||
.WithMany("Clients")
|
||||
.HasForeignKey("ExecutorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Consultation", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Case", "Case")
|
||||
.WithMany()
|
||||
.HasForeignKey("CaseId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Guarantor", null)
|
||||
.WithMany("Consultations")
|
||||
.HasForeignKey("GuarantorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Case");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.ConsultationLawyer", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Consultation", "Consultation")
|
||||
.WithMany("Lawyers")
|
||||
.HasForeignKey("ConsultationId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Lawyer", "Lawyer")
|
||||
.WithMany("ConsultationLawyers")
|
||||
.HasForeignKey("LawyerId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Consultation");
|
||||
|
||||
b.Navigation("Lawyer");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Hearing", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Guarantor", null)
|
||||
.WithMany("Hearings")
|
||||
.HasForeignKey("GuarantorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.HearingLawyer", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Hearing", "Hearing")
|
||||
.WithMany("Lawyers")
|
||||
.HasForeignKey("HearingId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Lawyer", "Lawyer")
|
||||
.WithMany("HearingLawyers")
|
||||
.HasForeignKey("LawyerId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Hearing");
|
||||
|
||||
b.Navigation("Lawyer");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Lawyer", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Guarantor", null)
|
||||
.WithMany("Lawyers")
|
||||
.HasForeignKey("GuarantorId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Visit", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Executor", null)
|
||||
.WithMany("Visits")
|
||||
.HasForeignKey("ExecutorId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Hearing", "Hearing")
|
||||
.WithMany()
|
||||
.HasForeignKey("HearingId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Hearing");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.VisitClient", b =>
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Client", "Client")
|
||||
.WithMany("ClientVisits")
|
||||
.HasForeignKey("ClientId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Visit", "Visit")
|
||||
.WithMany("Clients")
|
||||
.HasForeignKey("VisitId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Client");
|
||||
|
||||
b.Navigation("Visit");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Case", b =>
|
||||
{
|
||||
b.Navigation("Clients");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Client", b =>
|
||||
{
|
||||
b.Navigation("CaseClients");
|
||||
|
||||
b.Navigation("ClientVisits");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Consultation", b =>
|
||||
{
|
||||
b.Navigation("Lawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Executor", b =>
|
||||
{
|
||||
b.Navigation("Cases");
|
||||
|
||||
b.Navigation("Clients");
|
||||
|
||||
b.Navigation("Visits");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Guarantor", b =>
|
||||
{
|
||||
b.Navigation("Consultations");
|
||||
|
||||
b.Navigation("Hearings");
|
||||
|
||||
b.Navigation("Lawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Hearing", b =>
|
||||
{
|
||||
b.Navigation("Lawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Lawyer", b =>
|
||||
{
|
||||
b.Navigation("ConsultationLawyers");
|
||||
|
||||
b.Navigation("HearingLawyers");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("LawCompanyDatabaseImplement.Models.Visit", b =>
|
||||
{
|
||||
b.Navigation("Clients");
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class InitialCreate2 : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_Lawyers_Guarantors_GuarantorId",
|
||||
table: "Lawyers");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "GuarantorId",
|
||||
table: "Lawyers",
|
||||
type: "int",
|
||||
nullable: true,
|
||||
oldClrType: typeof(int),
|
||||
oldType: "int");
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_Lawyers_Guarantors_GuarantorId",
|
||||
table: "Lawyers",
|
||||
column: "GuarantorId",
|
||||
principalTable: "Guarantors",
|
||||
principalColumn: "Id");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_Lawyers_Guarantors_GuarantorId",
|
||||
table: "Lawyers");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "GuarantorId",
|
||||
table: "Lawyers",
|
||||
type: "int",
|
||||
nullable: false,
|
||||
defaultValue: 0,
|
||||
oldClrType: typeof(int),
|
||||
oldType: "int",
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_Lawyers_Guarantors_GuarantorId",
|
||||
table: "Lawyers",
|
||||
column: "GuarantorId",
|
||||
principalTable: "Guarantors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,70 +0,0 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class InitialCreate3 : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_Visits_Hearings_HearingId",
|
||||
table: "Visits");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "CaseType",
|
||||
table: "Cases");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "HearingId",
|
||||
table: "Visits",
|
||||
type: "int",
|
||||
nullable: true,
|
||||
oldClrType: typeof(int),
|
||||
oldType: "int");
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_Visits_Hearings_HearingId",
|
||||
table: "Visits",
|
||||
column: "HearingId",
|
||||
principalTable: "Hearings",
|
||||
principalColumn: "Id");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_Visits_Hearings_HearingId",
|
||||
table: "Visits");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "HearingId",
|
||||
table: "Visits",
|
||||
type: "int",
|
||||
nullable: false,
|
||||
defaultValue: 0,
|
||||
oldClrType: typeof(int),
|
||||
oldType: "int",
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "CaseType",
|
||||
table: "Cases",
|
||||
type: "nvarchar(max)",
|
||||
nullable: false,
|
||||
defaultValue: "");
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_Visits_Hearings_HearingId",
|
||||
table: "Visits",
|
||||
column: "HearingId",
|
||||
principalTable: "Hearings",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
}
|
||||
}
|
||||
}
|
@ -12,8 +12,8 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
[DbContext(typeof(LawCompanyDatabase))]
|
||||
[Migration("20240526230637_InitialCreate3")]
|
||||
partial class InitialCreate3
|
||||
[Migration("20240811194245_InitialCreate")]
|
||||
partial class InitialCreate
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
@ -117,7 +117,7 @@ namespace LawCompanyDatabaseImplement.Migrations
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("CaseId")
|
||||
b.Property<int?>("CaseId")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime>("ConsultationDate")
|
||||
@ -381,9 +381,7 @@ namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Case", "Case")
|
||||
.WithMany()
|
||||
.HasForeignKey("CaseId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
.HasForeignKey("CaseId");
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Guarantor", null)
|
||||
.WithMany("Consultations")
|
@ -0,0 +1,409 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class InitialCreate : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Executors",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
FIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Password = table.Column<string>(type: "nvarchar(max)", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Executors", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Guarantors",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
FIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Password = table.Column<string>(type: "nvarchar(max)", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Guarantors", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Cases",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
Name = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
DateCreate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
||||
DateImplement = table.Column<DateTime>(type: "datetime2", nullable: true),
|
||||
Status = table.Column<int>(type: "int", nullable: false),
|
||||
ExecutorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Cases", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Cases_Executors_ExecutorId",
|
||||
column: x => x.ExecutorId,
|
||||
principalTable: "Executors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Clients",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
FIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Phone = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
ExecutorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Clients", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Clients_Executors_ExecutorId",
|
||||
column: x => x.ExecutorId,
|
||||
principalTable: "Executors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Hearings",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
HearingDate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
||||
Judge = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
GuarantorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Hearings", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Hearings_Guarantors_GuarantorId",
|
||||
column: x => x.GuarantorId,
|
||||
principalTable: "Guarantors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Lawyers",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
FIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
Phone = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
||||
GuarantorId = table.Column<int>(type: "int", nullable: true)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Lawyers", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Lawyers_Guarantors_GuarantorId",
|
||||
column: x => x.GuarantorId,
|
||||
principalTable: "Guarantors",
|
||||
principalColumn: "Id");
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Consultations",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
Cost = table.Column<double>(type: "float", nullable: false),
|
||||
ConsultationDate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
||||
CaseId = table.Column<int>(type: "int", nullable: true),
|
||||
GuarantorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Consultations", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Consultations_Cases_CaseId",
|
||||
column: x => x.CaseId,
|
||||
principalTable: "Cases",
|
||||
principalColumn: "Id");
|
||||
table.ForeignKey(
|
||||
name: "FK_Consultations_Guarantors_GuarantorId",
|
||||
column: x => x.GuarantorId,
|
||||
principalTable: "Guarantors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "CaseClients",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
CaseId = table.Column<int>(type: "int", nullable: false),
|
||||
ClientId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_CaseClients", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_CaseClients_Cases_CaseId",
|
||||
column: x => x.CaseId,
|
||||
principalTable: "Cases",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_CaseClients_Clients_ClientId",
|
||||
column: x => x.ClientId,
|
||||
principalTable: "Clients",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Visits",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
VisitDate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
||||
HearingId = table.Column<int>(type: "int", nullable: true),
|
||||
ExecutorId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Visits", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Visits_Executors_ExecutorId",
|
||||
column: x => x.ExecutorId,
|
||||
principalTable: "Executors",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_Visits_Hearings_HearingId",
|
||||
column: x => x.HearingId,
|
||||
principalTable: "Hearings",
|
||||
principalColumn: "Id");
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "HearingLawyers",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
HearingId = table.Column<int>(type: "int", nullable: false),
|
||||
LawyerId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_HearingLawyers", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_HearingLawyers_Hearings_HearingId",
|
||||
column: x => x.HearingId,
|
||||
principalTable: "Hearings",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_HearingLawyers_Lawyers_LawyerId",
|
||||
column: x => x.LawyerId,
|
||||
principalTable: "Lawyers",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "ConsultationLawyers",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
ConsultationId = table.Column<int>(type: "int", nullable: false),
|
||||
LawyerId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_ConsultationLawyers", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_ConsultationLawyers_Consultations_ConsultationId",
|
||||
column: x => x.ConsultationId,
|
||||
principalTable: "Consultations",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_ConsultationLawyers_Lawyers_LawyerId",
|
||||
column: x => x.LawyerId,
|
||||
principalTable: "Lawyers",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "VisitClients",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(type: "int", nullable: false)
|
||||
.Annotation("SqlServer:Identity", "1, 1"),
|
||||
ClientId = table.Column<int>(type: "int", nullable: false),
|
||||
VisitId = table.Column<int>(type: "int", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_VisitClients", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_VisitClients_Clients_ClientId",
|
||||
column: x => x.ClientId,
|
||||
principalTable: "Clients",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_VisitClients_Visits_VisitId",
|
||||
column: x => x.VisitId,
|
||||
principalTable: "Visits",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_CaseClients_CaseId",
|
||||
table: "CaseClients",
|
||||
column: "CaseId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_CaseClients_ClientId",
|
||||
table: "CaseClients",
|
||||
column: "ClientId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Cases_ExecutorId",
|
||||
table: "Cases",
|
||||
column: "ExecutorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Clients_ExecutorId",
|
||||
table: "Clients",
|
||||
column: "ExecutorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_ConsultationLawyers_ConsultationId",
|
||||
table: "ConsultationLawyers",
|
||||
column: "ConsultationId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_ConsultationLawyers_LawyerId",
|
||||
table: "ConsultationLawyers",
|
||||
column: "LawyerId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Consultations_CaseId",
|
||||
table: "Consultations",
|
||||
column: "CaseId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Consultations_GuarantorId",
|
||||
table: "Consultations",
|
||||
column: "GuarantorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_HearingLawyers_HearingId",
|
||||
table: "HearingLawyers",
|
||||
column: "HearingId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_HearingLawyers_LawyerId",
|
||||
table: "HearingLawyers",
|
||||
column: "LawyerId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Hearings_GuarantorId",
|
||||
table: "Hearings",
|
||||
column: "GuarantorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Lawyers_GuarantorId",
|
||||
table: "Lawyers",
|
||||
column: "GuarantorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_VisitClients_ClientId",
|
||||
table: "VisitClients",
|
||||
column: "ClientId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_VisitClients_VisitId",
|
||||
table: "VisitClients",
|
||||
column: "VisitId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Visits_ExecutorId",
|
||||
table: "Visits",
|
||||
column: "ExecutorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Visits_HearingId",
|
||||
table: "Visits",
|
||||
column: "HearingId");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable(
|
||||
name: "CaseClients");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "ConsultationLawyers");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "HearingLawyers");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "VisitClients");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Consultations");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Lawyers");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Clients");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Visits");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Cases");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Hearings");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Executors");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Guarantors");
|
||||
}
|
||||
}
|
||||
}
|
@ -115,7 +115,6 @@ namespace LawCompanyDatabaseImplement.Migrations
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int?>("CaseId")
|
||||
.IsRequired()
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<DateTime>("ConsultationDate")
|
||||
@ -379,9 +378,7 @@ namespace LawCompanyDatabaseImplement.Migrations
|
||||
{
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Case", "Case")
|
||||
.WithMany()
|
||||
.HasForeignKey("CaseId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
.HasForeignKey("CaseId");
|
||||
|
||||
b.HasOne("LawCompanyDatabaseImplement.Models.Guarantor", null)
|
||||
.WithMany("Consultations")
|
||||
|
@ -106,5 +106,5 @@ namespace LawCompanyDatabaseImplement.Models
|
||||
}
|
||||
_caseClients = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -14,7 +14,6 @@ namespace LawCompanyDatabaseImplement.Models
|
||||
public double Cost { get; private set; }
|
||||
[Required]
|
||||
public DateTime ConsultationDate { get; private set; }
|
||||
[Required]
|
||||
public int? CaseId { get; private set; }
|
||||
public Case Case { get; private set; }
|
||||
public int GuarantorId { get; set; }
|
||||
@ -29,7 +28,6 @@ namespace LawCompanyDatabaseImplement.Models
|
||||
{
|
||||
if (_consultationLawyers == null)
|
||||
{
|
||||
using var context = new LawCompanyDatabase();
|
||||
_consultationLawyers = Lawyers.ToDictionary(x => x.LawyerId, x => (x.Lawyer as ILawyerModel));
|
||||
}
|
||||
return _consultationLawyers;
|
||||
@ -41,11 +39,6 @@ namespace LawCompanyDatabaseImplement.Models
|
||||
{
|
||||
return null;
|
||||
}
|
||||
var consultations = context.Consultations.Where(x => x.CaseId == model.CaseId).ToList();
|
||||
if (consultations.Count > 0)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return new Consultation()
|
||||
{
|
||||
Id = model.Id,
|
||||
|
@ -1,4 +1,5 @@
|
||||
using LawCompanyContracts.BindingModels;
|
||||
using DocumentFormat.OpenXml.Office2010.Excel;
|
||||
using LawCompanyContracts.BindingModels;
|
||||
using LawCompanyContracts.SearchModels;
|
||||
using LawCompanyContracts.ViewModels;
|
||||
using LawCompanyDataModels.Enums;
|
||||
@ -34,7 +35,7 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
client.Add(members, new ClientSearchModel { Id = members } as IClientModel);
|
||||
}
|
||||
|
||||
APIClient.PostRequest("api/case/createcase", new CaseBindingModel
|
||||
APIClient.PostRequest("api/case/createcase", new CaseBindingModel
|
||||
{
|
||||
Name = name,
|
||||
DateCreate = DateTime.Now,
|
||||
@ -52,7 +53,7 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
throw new Exception("Вы как суда попали? Суда вход только авторизованным");
|
||||
}
|
||||
|
||||
APIClient.PostRequest("api/case/deletecase", new CaseBindingModel
|
||||
APIClient.PostRequest("api/case/deletecase", new CaseBindingModel
|
||||
{
|
||||
Id = id
|
||||
});
|
||||
@ -110,6 +111,29 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
return View(APIClient.GetRequest<List<ClientViewModel>>($"api/case/getclientlisttocase?caseId={id}"));
|
||||
}
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IActionResult TopCases()
|
||||
{
|
||||
if (APIClient.Executor == null)
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
var cases = APIClient.GetRequest<List<CaseViewModel>>($"api/case/GetCaseList?executorId={APIClient.Executor.Id}");
|
||||
|
||||
var statusCounts = cases
|
||||
.GroupBy(c => c.Status)
|
||||
.Select(g => new
|
||||
{
|
||||
Status = g.Key.ToString(),
|
||||
Count = g.Count()
|
||||
})
|
||||
.ToList();
|
||||
|
||||
ViewBag.StatusCounts = statusCounts;
|
||||
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
@ -138,7 +138,7 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
ViewBag.Visits = APIClient.GetRequest<List<VisitViewModel>>($"api/visit/GetVisitList?executorId={APIClient.Executor.Id}");
|
||||
ViewBag.Hearings = APIClient.GetRequest<List<HearingViewModel>>($"api/hearing/GetHearingList");
|
||||
ViewBag.Hearings = APIClient.GetRequest<List<HearingViewModel>>($"api/hearing/GetHearingList?guarantorId={APIClient.Executor.Id}");
|
||||
return View();
|
||||
}
|
||||
|
||||
@ -157,7 +157,7 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
VisitDate = roomElem.VisitDate,
|
||||
HearingId = hearing
|
||||
});
|
||||
Response.Redirect("Visits");
|
||||
Response.Redirect("Index");
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
@ -206,7 +206,7 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
}
|
||||
else
|
||||
{
|
||||
APIClient.PostRequest("api/report/CreateOrganiserReportToExcelFile", new ReportExecutorBindingModel
|
||||
APIClient.PostRequest("api/report/CreateExecutorReportToExcelFile", new ReportExecutorBindingModel
|
||||
{
|
||||
Ids = res,
|
||||
FileName = "C:\\Reports\\excelfile.xlsx"
|
||||
@ -291,7 +291,6 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
_logger.LogError(ex, "Ошибка создания отчета");
|
||||
throw;
|
||||
}
|
||||
double sum = 0;
|
||||
string table = "";
|
||||
table += "<h2 class=\"text-custom-color-1\">Предварительный отчет</h2>";
|
||||
table += "<div class=\"table-responsive\">";
|
||||
@ -299,33 +298,37 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
table += "<thead class=\"table-dark\">";
|
||||
table += "<tr>";
|
||||
table += "<th scope=\"col\">Клиент</th>";
|
||||
table += "<th scope=\"col\">Наименование дела</th>";
|
||||
table += "<th scope=\"col\">Статус дела</th>";
|
||||
table += "<th scope=\"col\">Дело</th>";
|
||||
table += "<th scope=\"col\">Дата консультации</th>";
|
||||
table += "<th scope=\"col\">Цена консультации</th>";
|
||||
table += "</tr>";
|
||||
table += "</thead>";
|
||||
foreach (var report in result)
|
||||
table += "<tbody>";
|
||||
|
||||
foreach (var client in result)
|
||||
{
|
||||
bool IsCost = true;
|
||||
if (report.Cost == 0)
|
||||
{
|
||||
IsCost = false;
|
||||
}
|
||||
table += "<tbody>";
|
||||
table += "<tr>";
|
||||
table += $"<td>{report.FIO}</td>";
|
||||
table += $"<td>{report.Name}</td>";
|
||||
table += $"<td>{report.Status}</td>";
|
||||
table += $"<td>{report.ConsultationDate.ToShortDateString()}</td>";
|
||||
table += $"<td>{(IsCost ? report.Cost.ToString() : string.Empty)}</td>";
|
||||
table += $"<td>{client.FIO}</td>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td></td>";
|
||||
table += "</tr>";
|
||||
table += "</tbody>";
|
||||
sum += report.Cost;
|
||||
foreach (var cons in client.CaseName)
|
||||
{
|
||||
table += "<tr>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td>{cons}</td>";
|
||||
table += $"<td></td>";
|
||||
table += "</tr>";
|
||||
}
|
||||
foreach (var hear in client.VisitDate)
|
||||
{
|
||||
table += "<tr>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td>{hear}</td>";
|
||||
table += "</tr>";
|
||||
}
|
||||
}
|
||||
table += "<tfoot class=\"table-secondary\">";
|
||||
table += $"<tr><th colspan=\"2\">Итого:</th><th>{sum}</th><th colspan=\"2\"></th></tr>";
|
||||
table += "</tfoot>";
|
||||
table += "</tbody>";
|
||||
table += "</table>";
|
||||
table += "</div>";
|
||||
return table;
|
||||
|
@ -1,6 +1,7 @@
|
||||
using LawCompanyContracts.BindingModels;
|
||||
using LawCompanyContracts.SearchModels;
|
||||
using LawCompanyContracts.ViewModels;
|
||||
using LawCompanyDatabaseImplement;
|
||||
using LawCompanyDataModels.Models;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
@ -69,8 +70,8 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
ViewBag.Clients = APIClient.GetRequest<List<ClientViewModel>>($"api/client/GetClientList?executorId={APIClient.Executor.Id}");
|
||||
return View();
|
||||
ViewBag.Clients = APIClient.GetRequest<List<ClientViewModel>>($"api/client/GetClientList?executorId={APIClient.Executor.Id}");
|
||||
return View();
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
@ -92,7 +93,7 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
client.Add(members, new ClientSearchModel { Id = members } as IClientModel);
|
||||
}
|
||||
|
||||
APIClient.PostRequest("api/visit/updatevisit", new VisitBindingModel
|
||||
APIClient.PostRequest("api/visit/updatevisit", new VisitBindingModel
|
||||
{
|
||||
Id = id,
|
||||
VisitDate = visitDate,
|
||||
@ -101,14 +102,48 @@ namespace LawCompanyExecutorApp.Controllers
|
||||
Response.Redirect("/Home/Visits");
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IActionResult VisitClients(int id)
|
||||
{
|
||||
if (APIClient.Executor == null)
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
return View(APIClient.GetRequest<List<ClientViewModel>>($"api/visit/getclientlisttovisit?visitId={id}"));
|
||||
}
|
||||
}
|
||||
[HttpGet]
|
||||
public IActionResult VisitClients(int id)
|
||||
{
|
||||
if (APIClient.Executor == null)
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
return View(APIClient.GetRequest<List<ClientViewModel>>($"api/visit/getclientlisttovisit?visitId={id}"));
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IActionResult ClientVisitCounts()
|
||||
{
|
||||
if (APIClient.Executor == null)
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
|
||||
using (var context = new LawCompanyDatabase())
|
||||
{
|
||||
var clients = context.Clients
|
||||
.Where(c => c.ExecutorId == APIClient.Executor.Id)
|
||||
.Select(c => new ClientViewModel
|
||||
{
|
||||
Id = c.Id,
|
||||
FIO = c.FIO,
|
||||
Email = c.Email,
|
||||
Phone = c.Phone,
|
||||
ExecutorId = c.ExecutorId
|
||||
})
|
||||
.ToList();
|
||||
|
||||
var clientVisitCounts = clients.Select(client => new ClientVisitCountViewModel
|
||||
{
|
||||
FIO = client.FIO,
|
||||
VisitCount = context.VisitClients.Count(vc => vc.ClientId == client.Id)
|
||||
}).ToList();
|
||||
|
||||
ViewBag.ClientVisitCounts = clientVisitCounts;
|
||||
|
||||
return View(clientVisitCounts);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,12 +0,0 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace LawCompanyExecutorApp.Controllers
|
||||
{
|
||||
public class VizitController : Controller
|
||||
{
|
||||
public IActionResult Index()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
@ -12,7 +12,6 @@ using LawCompanyBusinessLogic.BusinessLogics;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
builder.Services.AddTransient<IReportExecutorLogic, ReportLogicExecutor>();
|
||||
builder.Services.AddTransient<IReportGuarantorLogic, ReportLogicGuarantor>();
|
||||
builder.Services.AddTransient<ICaseStorage, CaseStorage>();
|
||||
builder.Services.AddTransient<IVisitStorage, VisitStorage>();
|
||||
builder.Services.AddTransient<IClientStorage, ClientStorage>();
|
||||
|
@ -1,30 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Добавить клиентов";
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
}
|
||||
<style>
|
||||
</style>
|
||||
<div class="text-center">
|
||||
<h2 class="display-4">Добавить клиентов</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-4">Клиент</div>
|
||||
<div class="col-8">
|
||||
<select id="clientId" name="clientId" class="form-control" asp-items="@(new SelectList(@ViewBag.Clients,"Id", "FIO"))"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Дело</div>
|
||||
<div class="col-8">
|
||||
<select id="id" name="id" class="form-control" asp-items="@(new SelectList(@ViewBag.Cases,"Id", "Name"))"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-8"></div>
|
||||
<div class="col-4">
|
||||
<input type="submit" value="Создать" class="btn btn-primary" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
46
LawCompany/LawCompanyExecutorApp/Views/Case/TopCases.cshtml
Normal file
46
LawCompany/LawCompanyExecutorApp/Views/Case/TopCases.cshtml
Normal file
@ -0,0 +1,46 @@
|
||||
@using LawCompanyContracts.ViewModels;
|
||||
@{
|
||||
ViewData["Title"] = "Top Cases";
|
||||
var statusCounts = ViewBag.StatusCounts;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div id="chartContainer" style="height: 370px; width: 100%;"></div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
window.onload = function () {
|
||||
var statusCounts = @Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(statusCounts));
|
||||
var dataPoints = [];
|
||||
|
||||
for (var i = 0; i < statusCounts.length; i++) {
|
||||
dataPoints.push({ label: statusCounts[i].Status, y: statusCounts[i].Count });
|
||||
}
|
||||
|
||||
var chart = new CanvasJS.Chart("chartContainer", {
|
||||
theme: "light2",
|
||||
animationEnabled: true,
|
||||
title: {
|
||||
text: "Топ статусов по делам"
|
||||
},
|
||||
data: [
|
||||
{
|
||||
type: "pie",
|
||||
startAngle: 240,
|
||||
showInLegend: true,
|
||||
legendText: "{label}",
|
||||
indexLabel: "{label} - #percent%",
|
||||
dataPoints: dataPoints
|
||||
}
|
||||
]
|
||||
});
|
||||
chart.render();
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -35,19 +35,23 @@
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Privacy">Личные данные</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asparea="" asp-controller="Home" asp-action="ClientHearingToFile">Отчёт по слушаниям</a>
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="ClientHearingToFile">Отчёт по слушаниям</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asparea="" asp-controller="Home" asp-action="ClientsToPdfFile">Отчёт по слушаниям</a>
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="ClientsToPdfFile">Отчёт по слушаниям</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Case" asp-action="TopCases">Топ по делам</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Visit" asp-action="ClientVisitCounts">Топ по визитам</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Register">Регистрация</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Enter">Вход</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,30 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Добавление клиентов";
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
}
|
||||
<style>
|
||||
</style>
|
||||
<div class="text-center">
|
||||
<h2 class="display-4">Добавить задачи</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-4">Визит</div>
|
||||
<div class="col-8">
|
||||
<select id="visitId" name="visitId" class="form-control" asp-items="@(new SelectList(@ViewBag.Visits,"Id", "VisitDate"))"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Клиент</div>
|
||||
<div class="col-8">
|
||||
<select id="clientId" name="clientId" class="form-control" asp-items="@(new SelectList(@ViewBag.Clients,"Id", "FIO"))"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-8"></div>
|
||||
<div class="col-4">
|
||||
<input type="submit" value="Добавить" class="btn btn-primary" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
@ -0,0 +1,44 @@
|
||||
@using LawCompanyContracts.ViewModels;
|
||||
|
||||
@model List<ClientVisitCountViewModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Количество визитов клиентов";
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>@ViewData["Title"]</title>
|
||||
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="chartContainer" style="height: 370px; width: 100%;"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
window.onload = function () {
|
||||
var clientVisitCounts = @Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(Model));
|
||||
var dataPoints = [];
|
||||
|
||||
for (var i = 0; i < clientVisitCounts.length; i++) {
|
||||
dataPoints.push({ label: clientVisitCounts[i].FIO, y: clientVisitCounts[i].VisitCount });
|
||||
}
|
||||
|
||||
var chart = new CanvasJS.Chart("chartContainer", {
|
||||
theme: "light2",
|
||||
animationEnabled: true,
|
||||
title: {
|
||||
text: "Количество визитов по клиентам"
|
||||
},
|
||||
data: [
|
||||
{
|
||||
type: "column",
|
||||
dataPoints: dataPoints
|
||||
}
|
||||
]
|
||||
});
|
||||
chart.render();
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -104,5 +104,28 @@ namespace LawCompanyGuarantorApp.Controllers
|
||||
});
|
||||
Response.Redirect("/Home/Consultations");
|
||||
}
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IActionResult TopConsultation()
|
||||
{
|
||||
if (APIClient.Guarantor == null)
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
var consultation = APIClient.GetRequest<List<ConsultationViewModel>>($"api/consultation/GetConsultationList?guarantorId={APIClient.Guarantor.Id}");
|
||||
|
||||
var statusCounts = consultation
|
||||
.GroupBy(c => c.Cost)
|
||||
.Select(g => new
|
||||
{
|
||||
Cost = g.Key.ToString(),
|
||||
Count = g.Count()
|
||||
})
|
||||
.ToList();
|
||||
|
||||
ViewBag.StatusCounts = statusCounts;
|
||||
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,14 +1,14 @@
|
||||
using LawCompanyContracts.BindingModels;
|
||||
using LawCompanyContracts.SearchModels;
|
||||
using LawCompanyContracts.ViewModels;
|
||||
using LawCompanyDatabaseImplement.Models;
|
||||
using LawCompanyDatabaseImplement;
|
||||
using LawCompanyDataModels.Models;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace LawCompanyGuarantorApp.Controllers
|
||||
{
|
||||
public class HearingController : Controller
|
||||
{
|
||||
public class HearingController : Controller
|
||||
{
|
||||
[HttpGet]
|
||||
public IActionResult HearingLawyers(int id)
|
||||
{
|
||||
@ -105,5 +105,39 @@ namespace LawCompanyGuarantorApp.Controllers
|
||||
});
|
||||
Response.Redirect("/Home/Hearings");
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IActionResult LawyerHearingCounts()
|
||||
{
|
||||
if (APIClient.Guarantor == null)
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
|
||||
using (var context = new LawCompanyDatabase())
|
||||
{
|
||||
var lawyers = context.Lawyers
|
||||
.Where(c => c.GuarantorId == APIClient.Guarantor.Id)
|
||||
.Select(c => new LawyerViewModel
|
||||
{
|
||||
Id = c.Id,
|
||||
FIO = c.FIO,
|
||||
Email = c.Email,
|
||||
Phone = c.Phone,
|
||||
GuarantorId = c.GuarantorId
|
||||
})
|
||||
.ToList();
|
||||
|
||||
var lawyerHearingCounts = lawyers.Select(lawyer => new LawyerHearingCountViewModel
|
||||
{
|
||||
FIO = lawyer.FIO,
|
||||
HearingCount = context.HearingLawyers.Count(vc => vc.LawyerId == lawyer.Id)
|
||||
}).ToList();
|
||||
|
||||
ViewBag.LawyerHearingCounts = lawyerHearingCounts;
|
||||
|
||||
return View(lawyerHearingCounts);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
using LawCompanyContracts.BindingModels;
|
||||
using LawCompanyContracts.BusinessLogicContracts;
|
||||
using LawCompanyContracts.ViewModels;
|
||||
using LawCompanyGuarantorApp.Models;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
@ -9,10 +10,12 @@ namespace LawCompanyGuarantorApp.Controllers
|
||||
public class HomeController : Controller
|
||||
{
|
||||
private readonly ILogger<HomeController> _logger;
|
||||
private readonly IReportGuarantorLogic _report;
|
||||
|
||||
public HomeController(ILogger<HomeController> logger)
|
||||
public HomeController(ILogger<HomeController> logger, IReportGuarantorLogic report)
|
||||
{
|
||||
_logger = logger;
|
||||
_report = report;
|
||||
}
|
||||
|
||||
public IActionResult Index()
|
||||
@ -138,12 +141,12 @@ namespace LawCompanyGuarantorApp.Controllers
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
ViewBag.Cases = APIClient.GetRequest<List<CaseViewModel>>($"api/case/GetCaseList?executorId={APIClient.Guarantor.Id}");
|
||||
ViewBag.Consultations = APIClient.GetRequest<List<ConsultationViewModel>>($"api/consultation/getconsultationlist");
|
||||
ViewBag.Consultations = APIClient.GetRequest<List<ConsultationViewModel>>($"api/consultation/getconsultationlist?guarantorId={APIClient.Guarantor.Id}");
|
||||
return View();
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void ConsultationCase(int cases, int consultation)
|
||||
public void ConsultationCase(int consultation, int cases)
|
||||
{
|
||||
if (APIClient.Guarantor == null)
|
||||
{
|
||||
@ -158,10 +161,190 @@ namespace LawCompanyGuarantorApp.Controllers
|
||||
ConsultationDate = roomElem.ConsultationDate,
|
||||
CaseId = cases
|
||||
});
|
||||
Response.Redirect("Visits");
|
||||
Response.Redirect("Index");
|
||||
}
|
||||
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
[HttpGet]
|
||||
public IActionResult LawyerConsultationToFile()
|
||||
{
|
||||
if (APIClient.Guarantor == null)
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
return View(APIClient.GetRequest<List<LawyerViewModel>>($"api/lawyer/getlawyerlist?guarantorId={APIClient.Guarantor.Id}"));
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void LawyerConsultationToFile(int[] Ids, string type)
|
||||
{
|
||||
if (APIClient.Guarantor == null)
|
||||
{
|
||||
throw new Exception("Вы как суда попали? Суда вход только авторизованным");
|
||||
}
|
||||
|
||||
if (Ids.Length <= 0)
|
||||
{
|
||||
throw new Exception("Количество должно быть больше 0");
|
||||
}
|
||||
|
||||
if (string.IsNullOrEmpty(type))
|
||||
{
|
||||
throw new Exception("Неверный тип отчета");
|
||||
}
|
||||
|
||||
List<int> res = new List<int>();
|
||||
|
||||
foreach (var item in Ids)
|
||||
{
|
||||
res.Add(item);
|
||||
}
|
||||
|
||||
if (type == "docx")
|
||||
{
|
||||
APIClient.PostRequest("api/report/CreateGuarantorReportToWordFile", new ReportGuarantorBindingModel
|
||||
{
|
||||
Ids = res,
|
||||
FileName = "C:\\Reports\\wordfile.docx"
|
||||
});
|
||||
Response.Redirect("GetWordFile");
|
||||
}
|
||||
else
|
||||
{
|
||||
APIClient.PostRequest("api/report/CreateGuarantorReportToExcelFile", new ReportGuarantorBindingModel
|
||||
{
|
||||
Ids = res,
|
||||
FileName = "C:\\Reports\\excelfile.xlsx"
|
||||
});
|
||||
Response.Redirect("GetExcelFile");
|
||||
}
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IActionResult GetWordFile()
|
||||
{
|
||||
return new PhysicalFileResult("C:\\Reports\\wordfile.docx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document");
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IActionResult GetExcelFile()
|
||||
{
|
||||
return new PhysicalFileResult("C:\\Reports\\excelfile.xlsx", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
|
||||
}
|
||||
|
||||
public IActionResult GetPdfFile()
|
||||
{
|
||||
return new PhysicalFileResult("C:\\Reports\\pdffile.pdf", "application/pdf");
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IActionResult LawyersToPdfFile()
|
||||
{
|
||||
if (APIClient.Guarantor == null)
|
||||
{
|
||||
return Redirect("~/Home/Enter");
|
||||
}
|
||||
return View("LawyersToPdfFile");
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void LawyersToPdfFile(DateTime dateFrom, DateTime dateTo, string email)
|
||||
{
|
||||
if (APIClient.Guarantor == null)
|
||||
{
|
||||
throw new Exception("Вы как суда попали? Суда вход только авторизованным");
|
||||
}
|
||||
if (string.IsNullOrEmpty(email))
|
||||
{
|
||||
throw new Exception("Email пуст");
|
||||
}
|
||||
APIClient.PostRequest("api/report/CreateGuarantorReportToPdfFile", new ReportGuarantorBindingModel
|
||||
{
|
||||
DateFrom = dateFrom,
|
||||
DateTo = dateTo,
|
||||
GuarantorId = APIClient.Guarantor.Id
|
||||
});
|
||||
APIClient.PostRequest("api/report/SendPdfToMail", new MailSendInfoBindingModel
|
||||
{
|
||||
MailAddress = email,
|
||||
Subject = "Отчет по юристам (pdf)",
|
||||
Text = "Отчет по юристам с " + dateFrom.ToShortDateString() + " до " + dateTo.ToShortDateString()
|
||||
});
|
||||
Response.Redirect("LawyersToPdfFile");
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public string GetLawyersReport(DateTime dateFrom, DateTime dateTo)
|
||||
{
|
||||
if (APIClient.Guarantor == null)
|
||||
{
|
||||
throw new Exception("Вы как суда попали? Суда вход только авторизованным");
|
||||
}
|
||||
List<ReportLawyersViewModel> result;
|
||||
try
|
||||
{
|
||||
result = _report.GetLawyers(new ReportGuarantorBindingModel
|
||||
{
|
||||
GuarantorId = APIClient.Guarantor.Id,
|
||||
DateFrom = dateFrom,
|
||||
DateTo = dateTo
|
||||
});
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Ошибка создания отчета");
|
||||
throw;
|
||||
}
|
||||
string table = "";
|
||||
table += "<h2 class=\"text-custom-color-1\">Предварительный отчет</h2>";
|
||||
table += "<div class=\"table-responsive\">";
|
||||
table += "<table class=\"table table-striped table-bordered table-hover\">";
|
||||
table += "<thead class=\"table-dark\">";
|
||||
table += "<tr>";
|
||||
table += "<th scope=\"col\">Юрист</th>";
|
||||
table += "<th scope=\"col\">Цена консультации</th>";
|
||||
table += "<th scope=\"col\">Дата консультации</th>";
|
||||
table += "<th scope=\"col\">Суд</th>";
|
||||
table += "<th scope=\"col\">Дата слушания</th>";
|
||||
table += "</tr>";
|
||||
table += "</thead>";
|
||||
foreach (var lawyer in result)
|
||||
{
|
||||
table += "<tbody>";
|
||||
table += "<tr>";
|
||||
table += $"<td>{lawyer.FIO}</td>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td></td>";
|
||||
table += "</tr>";
|
||||
foreach (var cons in lawyer.Consultation)
|
||||
{
|
||||
table += "<tr>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td>{cons.ConsultationDate}</td>";
|
||||
table += $"<td>{cons.Price}</td>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td></td>";
|
||||
table += "</tr>";
|
||||
}
|
||||
foreach (var hear in lawyer.Hearing)
|
||||
{
|
||||
table += "<tr>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td></td>";
|
||||
table += $"<td>{hear.Judge}</td>";
|
||||
table += $"<td>{hear.HearingDate}</td>";
|
||||
table += "</tr>";
|
||||
}
|
||||
table += "</tbody>";
|
||||
}
|
||||
table += "</table>";
|
||||
table += "</div>";
|
||||
return table;
|
||||
}
|
||||
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
public IActionResult Error()
|
||||
{
|
||||
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
||||
|
@ -8,7 +8,6 @@ using LawCompanyDatabaseImplement.Implements;
|
||||
using LawCompanyGuarantorApp;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
builder.Services.AddTransient<IReportExecutorLogic, ReportLogicExecutor>();
|
||||
builder.Services.AddTransient<IReportGuarantorLogic, ReportLogicGuarantor>();
|
||||
builder.Services.AddTransient<ICaseStorage, CaseStorage>();
|
||||
builder.Services.AddTransient<IVisitStorage, VisitStorage>();
|
||||
@ -17,9 +16,9 @@ builder.Services.AddTransient<IHearingStorage, HearingStorage>();
|
||||
builder.Services.AddTransient<ILawyerStorage, LawyerStorage>();
|
||||
builder.Services.AddTransient<IConsultationStorage, ConsultationStorage>();
|
||||
|
||||
builder.Services.AddTransient<AbstractSaveToWordExecutor, SaveToWordExecutor>();
|
||||
builder.Services.AddTransient<AbstractSaveToExcelExecutor, SaveToExcelExecutor>();
|
||||
builder.Services.AddTransient<AbstractSaveToPdfExecutor, SaveToPdfExecutor>();
|
||||
builder.Services.AddTransient<AbstractSaveToWordGuarantor, SaveToWordGuarantor>();
|
||||
builder.Services.AddTransient<AbstractSaveToExcelGuarantor, SaveToExcelGuarantor>();
|
||||
builder.Services.AddTransient<AbstractSaveToPdfGuarantor, SaveToPdfGuarantor>();
|
||||
|
||||
// Add services to the container.
|
||||
builder.Services.AddControllersWithViews();
|
||||
|
@ -1,30 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Добавление юристов";
|
||||
Layout = "~/Views/Shared/_LayoutGuarantor.cshtml";
|
||||
}
|
||||
<style>
|
||||
</style>
|
||||
<div class="text-center">
|
||||
<h2 class="display-4">Добавить юристов</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-4">Юрист</div>
|
||||
<div class="col-8">
|
||||
<select id="lawyerId" name="lawyerId" class="form-control" asp-items="@(new SelectList(@ViewBag.Lawyers,"Id", "FIO"))"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Консультация</div>
|
||||
<div class="col-8">
|
||||
<select id="conId" name="conId" class="form-control" asp-items="@(new SelectList(@ViewBag.Consultations,"Id", "Cost"))"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-8"></div>
|
||||
<div class="col-4">
|
||||
<input type="submit" value="Создать" class="btn btn-primary" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
@ -12,7 +12,7 @@
|
||||
<div class="row">
|
||||
<div class="col-4">Стоимость</div>
|
||||
<div class="col-8">
|
||||
<input type="number" id="cost" name="cost">
|
||||
<input type="number" placeholder="Введите стоимость" id="cost" name="cost">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
@ -0,0 +1,46 @@
|
||||
@using LawCompanyContracts.ViewModels;
|
||||
@{
|
||||
ViewData["Title"] = "Top Consultation";
|
||||
var statusCounts = ViewBag.StatusCounts;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div id="chartContainer" style="height: 370px; width: 100%;"></div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
window.onload = function () {
|
||||
var statusCounts = @Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(statusCounts));
|
||||
var dataPoints = [];
|
||||
|
||||
for (var i = 0; i < statusCounts.length; i++) {
|
||||
dataPoints.push({ label: statusCounts[i].Cost, y: statusCounts[i].Count });
|
||||
}
|
||||
|
||||
var chart = new CanvasJS.Chart("chartContainer", {
|
||||
theme: "light2",
|
||||
animationEnabled: true,
|
||||
title: {
|
||||
text: "Топ консультаций по цене"
|
||||
},
|
||||
data: [
|
||||
{
|
||||
type: "pie",
|
||||
startAngle: 240,
|
||||
showInLegend: true,
|
||||
legendText: "{label}",
|
||||
indexLabel: "{label} - #percent%",
|
||||
dataPoints: dataPoints
|
||||
}
|
||||
]
|
||||
});
|
||||
chart.render();
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -14,13 +14,13 @@
|
||||
<div class="row">
|
||||
<div class="col-4">Стоимость</div>
|
||||
<div class="col-8">
|
||||
<input type="text" name="cost" id="cost" />
|
||||
<input type="number" placeholder="Введите стоимость" id="cost" name="cost">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Дата</div>
|
||||
<div class="col-4">Дата и время</div>
|
||||
<div class="col-8">
|
||||
<input type="text" name="date" id="date" />
|
||||
<input type="datetime-local" placeholder="Введите дату" name="date" id="date">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
@ -1,30 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Добавить юристов";
|
||||
Layout = "~/Views/Shared/_LayoutGuarantor.cshtml";
|
||||
}
|
||||
<style>
|
||||
</style>
|
||||
<div class="text-center">
|
||||
<h2 class="display-4">Добавить юристов</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-4">Слушание</div>
|
||||
<div class="col-8">
|
||||
<select id="id" name="id" class="form-control" asp-items="@(new SelectList(@ViewBag.Hearings,"Id", "Name"))"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Юрист</div>
|
||||
<div class="col-8">
|
||||
<select id="lawyerId" name="lawyerId" class="form-control" asp-items="@(new SelectList(@ViewBag.Hearings,"Id", "FIO"))"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-8"></div>
|
||||
<div class="col-4">
|
||||
<input type="submit" value="Создать" class="btn btn-primary" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
@ -0,0 +1,44 @@
|
||||
@using LawCompanyContracts.ViewModels;
|
||||
|
||||
@model List<LawyerHearingCountViewModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Количество слушаний юристов";
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>@ViewData["Title"]</title>
|
||||
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="chartContainer" style="height: 370px; width: 100%;"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
window.onload = function () {
|
||||
var lawyerHearingCounts = @Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(Model));
|
||||
var dataPoints = [];
|
||||
|
||||
for (var i = 0; i < lawyerHearingCounts.length; i++) {
|
||||
dataPoints.push({ label: lawyerHearingCounts[i].FIO, y: lawyerHearingCounts[i].HearingCount });
|
||||
}
|
||||
|
||||
var chart = new CanvasJS.Chart("chartContainer", {
|
||||
theme: "light2",
|
||||
animationEnabled: true,
|
||||
title: {
|
||||
text: "Количество слушаний юристов"
|
||||
},
|
||||
data: [
|
||||
{
|
||||
type: "column",
|
||||
dataPoints: dataPoints
|
||||
}
|
||||
]
|
||||
});
|
||||
chart.render();
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -1,63 +0,0 @@
|
||||
@using LawCompanyContracts.ViewModels
|
||||
@model List<ConsultationViewModel>
|
||||
@{
|
||||
ViewData["Title"] = "Create Consultation";
|
||||
Layout = "~/Views/Shared/_LayoutGuarantor.cshtml";
|
||||
}
|
||||
<div class="text-center">
|
||||
<h1 class="display-4">Список консультаций</h1>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
@{
|
||||
<p>
|
||||
<a asp-controller="Consultation" asp-action="CreateConsultation">Назначить консультацию</a>
|
||||
<a asp-controller="Consultation" asp-action="AddLawyer">Добавить юристов к консультациям</a>
|
||||
</p>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
Номер
|
||||
</th>
|
||||
<th>
|
||||
Стоимость консультации
|
||||
</th>
|
||||
<th>
|
||||
Дата консультации
|
||||
</th>
|
||||
<th>
|
||||
Наименование дела
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model)
|
||||
{
|
||||
<tr>
|
||||
<td id="id">
|
||||
@Html.DisplayFor(modelItem =>
|
||||
item.Id)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem =>
|
||||
item.Cost)
|
||||
</td>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem =>
|
||||
item.CaseName)
|
||||
</td>
|
||||
<td>
|
||||
<button type="submit" class="btn btn-danger">Удалить</button>
|
||||
</td>
|
||||
<td>
|
||||
<button type="submit" class="btn btn-danger">Изменить</button>
|
||||
</td>
|
||||
<td>
|
||||
<button type="submit" class="btn btn-danger">Юристы</button>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
}
|
||||
</div>
|
@ -1,21 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Enter";
|
||||
Layout = "~/Views/Shared/_LayoutGuarantor.cshtml";
|
||||
}
|
||||
<div class="text-center">
|
||||
<h2 class="display-4">Вход в приложение</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
<div class="row">
|
||||
<div class="col-4">Электронная почта:</div>
|
||||
<div class="col-8"><input type="text" name="email" /></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Пароль:</div>
|
||||
<div class="col-8"><input type="password" name="password" /></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-8"></div>
|
||||
<div class="col-4"><input type="submit" value="Вход" class="btn btnprimary" /></div>
|
||||
</div>
|
||||
</form>
|
@ -0,0 +1,73 @@
|
||||
@using LawCompanyContracts.ViewModels
|
||||
|
||||
@model List<LawyerViewModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "LawyerConsultationToFile";
|
||||
}
|
||||
|
||||
<div class="text-center">
|
||||
<div class="title">
|
||||
<h2>Создание отчёта по юристам</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<form method="post">
|
||||
<div class="file-format">
|
||||
<label class="form-label">Выберите формат файла:</label>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio" name="type" value="docx" id="docx">
|
||||
<label class="form-check-label" for="docx">Word-файл</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio" name="type" value="xlsx" id="xlsx" checked>
|
||||
<label class="form-check-label" for="xlsx">Excel-файл</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="table">
|
||||
<table class="table table-hover">
|
||||
<thead class="thead-light">
|
||||
<tr>
|
||||
<th scope="col"></th>
|
||||
<th scope="col">ФИО</th>
|
||||
<th scope="col">Почта</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var item in Model)
|
||||
{
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" name="Ids[]" value="@item.Id" id="@item.Id">
|
||||
</div>
|
||||
</td>
|
||||
<td>@Html.DisplayFor(modelItem => item.FIO)</td>
|
||||
<td>@Html.DisplayFor(modelItem => item.Email)</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<br>
|
||||
<div class="d-flex justify-content-center">
|
||||
<button type="submit" class="btn btn-block btn-outline-dark w-100">Создать</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.title {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.file-format {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.table {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,72 @@
|
||||
@using LawCompanyContracts.ViewModels
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "LawyersToPdfFile";
|
||||
}
|
||||
|
||||
<div class="container">
|
||||
<div class="text-center mb-4">
|
||||
<h2 class="text-custom-color-1">Отчет по юристам за период</h2>
|
||||
</div>
|
||||
|
||||
<form method="post">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
<label for="dateFrom" class="form-label text-custom-color-1">Начало периода:</label>
|
||||
<input type="datetime-local" id="dateFrom" name="dateFrom" class="form-control" placeholder="Выберите дату начала периода">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
<label for="dateTo" class="form-label text-custom-color-1">Окончание периода:</label>
|
||||
<input type="datetime-local" id="dateTo" name="dateTo" class="form-control" placeholder="Выберите дату окончания периода">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group mb-4">
|
||||
<label for="email" class="form-label text-custom-color-1">Почта:</label>
|
||||
<input type="email" id="email" name="email" class="form-control" placeholder="Введите вашу почту">
|
||||
</div>
|
||||
|
||||
<div class="row mb-4">
|
||||
<div class="col-md-8"></div>
|
||||
<div class="col-md-4">
|
||||
<button type="submit" class="btn btn-outline-dark w-100 text-center d-flex justify-content-md-center">Отправить на почту</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-4">
|
||||
<div class="col-md-8"></div>
|
||||
<div class="col-md-4">
|
||||
<button type="button" id="demonstrate" class="btn btn-outline-dark w-100 text-center d-flex justify-content-md-center">Продемонстрировать</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="report"></div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@section Scripts {
|
||||
<script>
|
||||
function check() {
|
||||
var dateFrom = $('#dateFrom').val();
|
||||
var dateTo = $('#dateTo').val();
|
||||
if (dateFrom && dateTo) {
|
||||
$.ajax({
|
||||
method: "GET",
|
||||
url: "/Home/GetLawyersReport",
|
||||
data: { dateFrom: dateFrom, dateTo: dateTo },
|
||||
success: function (result) {
|
||||
if (result != null) {
|
||||
$('#report').html(result);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
}
|
||||
check();
|
||||
$('#demonstrate').on('click', (e) => check());
|
||||
</script>
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Privacy Policy";
|
||||
Layout = "~/Views/Shared/_LayoutGuarantor.cshtml";
|
||||
}
|
||||
<div class="text-center">
|
||||
<h2 class="display-4">Личные данные</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
<div class="row">
|
||||
<div class="col-4">Электронная почта:</div>
|
||||
<div class="col-8">
|
||||
<input type="text" name="email"
|
||||
value="@Model.Email" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Пароль:</div>
|
||||
<div class="col-8">
|
||||
<input type="password" name="password"
|
||||
value="@Model.Password" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">ФИО:</div>
|
||||
<div class="col-8">
|
||||
<input type="text" name="fio"
|
||||
value="@Model.FIO" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-8"></div>
|
||||
<div class="col-4">
|
||||
<input type="submit" value="Сохранить" class="btn btn-primary" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
@ -1,28 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Register";
|
||||
Layout = "~/Views/Shared/_LayoutGuarantor.cshtml";
|
||||
}
|
||||
<div class="text-center">
|
||||
<h2 class="display-4">Регистрация поручителя</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
<div class="row">
|
||||
<div class="col-4">Электронная почта:</div>
|
||||
<div class="col-8"><input type="text" name="email" /></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Пароль:</div>
|
||||
<div class="col-8"><input type="password" name="password" /></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">ФИО:</div>
|
||||
<div class="col-8"><input type="text" name="fio" /></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-8"></div>
|
||||
<div class="col-4">
|
||||
<input type="submit" value="Регистрация"
|
||||
class="btn btn-primary" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
@ -31,10 +31,22 @@
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="ConsultationCase">Связывание</a>
|
||||
</li>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Privacy">Личные данные</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="LawyerConsultationToFile">Отчёт по слушаниям</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="LawyersToPdfFile">Отчёт по слушаниям</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Consultation" asp-action="TopConsultation">Топ по консультациям</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Hearing" asp-action="LawyerHearingCounts">Топ по слушаниям</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Register">Регистрация</a>
|
||||
</li>
|
||||
|
@ -41,13 +41,18 @@ namespace LawCompanyRestApi.Controllers
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[HttpGet("{id}")]
|
||||
[HttpGet]
|
||||
public ConsultationViewModel? GetConsultation(int id)
|
||||
{
|
||||
try
|
||||
{
|
||||
return _logic.ReadElement(new ConsultationSearchModel { Id = id, });
|
||||
var elem = _logic.ReadElement(new ConsultationSearchModel { Id = id, });
|
||||
if (elem == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
elem.ConsultationLawyers = null!;
|
||||
return elem;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
@ -42,20 +42,6 @@ namespace HotelRestApi.Controllers
|
||||
}
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void SendPdfToMail(MailSendInfoBindingModel model)
|
||||
{
|
||||
try
|
||||
{
|
||||
_mailWorker.MailSendAsync(model);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Ошибка отправки письма");
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void CreateExecutorReportToWordFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
@ -71,7 +57,7 @@ namespace HotelRestApi.Controllers
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void CreateOrganiserReportToExcelFile(ReportExecutorBindingModel model)
|
||||
public void CreateExecutorReportToExcelFile(ReportExecutorBindingModel model)
|
||||
{
|
||||
try
|
||||
{
|
||||
@ -84,12 +70,12 @@ namespace HotelRestApi.Controllers
|
||||
}
|
||||
}
|
||||
|
||||
/*[HttpPost]
|
||||
public void CreateHeadwaiterReportToWordFile(ReportHeadwaiterBindingModel model)
|
||||
[HttpPost]
|
||||
public void CreateGuarantorReportToWordFile(ReportGuarantorBindingModel model)
|
||||
{
|
||||
try
|
||||
{
|
||||
_reportHeadwaiterLogic.SaveLunchRoomToWordFile(model);
|
||||
_reportGuarantorLogic.SaveLawyerHearingToWordFile(model);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@ -99,11 +85,11 @@ namespace HotelRestApi.Controllers
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void CreateHeadwaiterReportToExcelFile(ReportHeadwaiterBindingModel model)
|
||||
public void CreateGuarantorReportToExcelFile(ReportGuarantorBindingModel model)
|
||||
{
|
||||
try
|
||||
{
|
||||
_reportHeadwaiterLogic.SaveLunchRoomToExcelFile(model);
|
||||
_reportGuarantorLogic.SaveLawyerHearingToExcelFile(model);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@ -113,16 +99,16 @@ namespace HotelRestApi.Controllers
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void CreateHeadwaiterReportToPdfFile(ReportHeadwaiterBindingModel model)
|
||||
public void CreateGuarantorReportToPdfFile(ReportGuarantorBindingModel model)
|
||||
{
|
||||
try
|
||||
{
|
||||
_reportHeadwaiterLogic.SaveLunchesToPdfFile(new ReportHeadwaiterBindingModel
|
||||
_reportGuarantorLogic.SaveLawyersToPdfFile(new ReportGuarantorBindingModel
|
||||
{
|
||||
FileName = "C:\\Reports\\pdffile.pdf",
|
||||
DateFrom = model.DateFrom,
|
||||
DateTo = model.DateTo,
|
||||
HeadwaiterId = model.HeadwaiterId,
|
||||
GuarantorId = model.GuarantorId,
|
||||
});
|
||||
}
|
||||
catch (Exception ex)
|
||||
@ -130,6 +116,20 @@ namespace HotelRestApi.Controllers
|
||||
_logger.LogError(ex, "Ошибка создания отчета");
|
||||
throw;
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void SendPdfToMail(MailSendInfoBindingModel model)
|
||||
{
|
||||
try
|
||||
{
|
||||
_mailWorker.MailSendAsync(model);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Ошибка отправки письма");
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -40,12 +40,17 @@ namespace LawCompanyRestApi.Controllers
|
||||
}
|
||||
}
|
||||
|
||||
[HttpGet("{id}")]
|
||||
public VisitViewModel? GetVisit(int id)
|
||||
[HttpGet]
|
||||
public VisitViewModel GetVisit(int id)
|
||||
{
|
||||
try
|
||||
{
|
||||
return _logic.ReadElement(new VisitSearchModel { Id = id, });
|
||||
var elem = _logic.ReadElement(new VisitSearchModel { Id = id, });
|
||||
if (elem == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return elem;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
@ -46,6 +46,10 @@ builder.Services.AddTransient<AbstractSaveToWordExecutor, SaveToWordExecutor>();
|
||||
builder.Services.AddTransient<AbstractSaveToExcelExecutor, SaveToExcelExecutor>();
|
||||
builder.Services.AddTransient<AbstractSaveToPdfExecutor, SaveToPdfExecutor>();
|
||||
|
||||
builder.Services.AddTransient<AbstractSaveToWordGuarantor, SaveToWordGuarantor>();
|
||||
builder.Services.AddTransient<AbstractSaveToExcelGuarantor, SaveToExcelGuarantor>();
|
||||
builder.Services.AddTransient<AbstractSaveToPdfGuarantor, SaveToPdfGuarantor>();
|
||||
|
||||
builder.Services.AddSingleton<AbstractMailWorker, MailKitWorker>();
|
||||
|
||||
builder.Services.AddControllers();
|
||||
|
Loading…
Reference in New Issue
Block a user