This commit is contained in:
parent
893e4f65d1
commit
c8ab65a4ad
|
@ -508,6 +508,7 @@ namespace BLL
|
||||||
OutTime = person.OutTime,
|
OutTime = person.OutTime,
|
||||||
OutResult = person.OutResult,
|
OutResult = person.OutResult,
|
||||||
Telephone = person.Telephone,
|
Telephone = person.Telephone,
|
||||||
|
Email = person.Email,
|
||||||
PositionId = person.PositionId,
|
PositionId = person.PositionId,
|
||||||
PostTitleId = person.PostTitleId,
|
PostTitleId = person.PostTitleId,
|
||||||
PhotoUrl = person.PhotoUrl,
|
PhotoUrl = person.PhotoUrl,
|
||||||
|
@ -588,6 +589,7 @@ namespace BLL
|
||||||
newPerson.OutTime = person.OutTime;
|
newPerson.OutTime = person.OutTime;
|
||||||
newPerson.OutResult = person.OutResult;
|
newPerson.OutResult = person.OutResult;
|
||||||
newPerson.Telephone = person.Telephone;
|
newPerson.Telephone = person.Telephone;
|
||||||
|
newPerson.Email = person.Email;
|
||||||
newPerson.PositionId = person.PositionId;
|
newPerson.PositionId = person.PositionId;
|
||||||
newPerson.PostTitleId = person.PostTitleId;
|
newPerson.PostTitleId = person.PostTitleId;
|
||||||
if (newPerson.PhotoUrl != person.PhotoUrl && !string.IsNullOrEmpty(person.PhotoUrl))
|
if (newPerson.PhotoUrl != person.PhotoUrl && !string.IsNullOrEmpty(person.PhotoUrl))
|
||||||
|
@ -669,6 +671,7 @@ namespace BLL
|
||||||
newPerson.OutTime = person.OutTime;
|
newPerson.OutTime = person.OutTime;
|
||||||
newPerson.OutResult = person.OutResult;
|
newPerson.OutResult = person.OutResult;
|
||||||
newPerson.Telephone = person.Telephone;
|
newPerson.Telephone = person.Telephone;
|
||||||
|
newPerson.Email = person.Email;
|
||||||
newPerson.PhotoUrl = person.PhotoUrl;
|
newPerson.PhotoUrl = person.PhotoUrl;
|
||||||
newPerson.HeadImage = person.HeadImage;
|
newPerson.HeadImage = person.HeadImage;
|
||||||
newPerson.IsUsed = person.IsUsed;
|
newPerson.IsUsed = person.IsUsed;
|
||||||
|
|
|
@ -19814,7 +19814,7 @@
|
||||||
</FlavorProperties>
|
</FlavorProperties>
|
||||||
</VisualStudio>
|
</VisualStudio>
|
||||||
</ProjectExtensions>
|
</ProjectExtensions>
|
||||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v15.0\WebApplications\Microsoft.WebApplication.targets" />
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v17.0\WebApplications\Microsoft.WebApplication.targets" />
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
<Target Name="BeforeBuild">
|
<Target Name="BeforeBuild">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<Use64BitIISExpress />
|
<Use64BitIISExpress />
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
|
|
Loading…
Reference in New Issue