Merge branch 'LabWork06_Base' into LabWork07_Base
This commit is contained in:
commit
1227889856
1
.gitignore
vendored
1
.gitignore
vendored
@ -398,3 +398,4 @@ FodyWeavers.xsd
|
|||||||
# JetBrains Rider
|
# JetBrains Rider
|
||||||
*.sln.iml
|
*.sln.iml
|
||||||
|
|
||||||
|
/LawFirm/ImplementationExtensions
|
||||||
|
@ -70,7 +70,8 @@ namespace LawFirmBusinessLogic.BusinessLogics
|
|||||||
DateCreate = viewModel.DateCreate,
|
DateCreate = viewModel.DateCreate,
|
||||||
DateImplement = viewModel.DateImplement,
|
DateImplement = viewModel.DateImplement,
|
||||||
Count = viewModel.Count,
|
Count = viewModel.Count,
|
||||||
Sum = viewModel.Sum
|
Sum = viewModel.Sum,
|
||||||
|
ImplementerId = viewModel.ImplementerId
|
||||||
};
|
};
|
||||||
if (rawModel.ImplementerId.HasValue)
|
if (rawModel.ImplementerId.HasValue)
|
||||||
{
|
{
|
||||||
|
@ -78,8 +78,8 @@ namespace LawFirmDatabaseImplement.Models
|
|||||||
DateImplement = DateImplement,
|
DateImplement = DateImplement,
|
||||||
Id = Id,
|
Id = Id,
|
||||||
Status = Status,
|
Status = Status,
|
||||||
DocumentName = Document.DocumentName,
|
DocumentName = Document?.DocumentName ?? string.Empty,
|
||||||
ClientFIO = Client.ClientFIO,
|
ClientFIO = Client?.ClientFIO ?? string.Empty,
|
||||||
ImplementerFIO = Implementer?.ImplementerFIO ?? string.Empty,
|
ImplementerFIO = Implementer?.ImplementerFIO ?? string.Empty,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user