aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_v2/Tango.BLL/Mappers/OrganizationToOrganizationEntityMapper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio_v2/Tango.BLL/Mappers/OrganizationToOrganizationEntityMapper.cs')
-rw-r--r--Software/Visual_Studio_v2/Tango.BLL/Mappers/OrganizationToOrganizationEntityMapper.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Software/Visual_Studio_v2/Tango.BLL/Mappers/OrganizationToOrganizationEntityMapper.cs b/Software/Visual_Studio_v2/Tango.BLL/Mappers/OrganizationToOrganizationEntityMapper.cs
index 741b2f0e8..0d6079f1f 100644
--- a/Software/Visual_Studio_v2/Tango.BLL/Mappers/OrganizationToOrganizationEntityMapper.cs
+++ b/Software/Visual_Studio_v2/Tango.BLL/Mappers/OrganizationToOrganizationEntityMapper.cs
@@ -11,6 +11,7 @@ namespace Tango.BLL.Mappers
public void Map(Organization source, OrganizationEntity target)
{
target.ID = source.ID;
+ target.Name = source.Name;
new AddressToAddressModelMapper().Map(source.Address, target.Address);
new ContactToContactModelMapper().Map(source.Contact, target.Contact);
}
@@ -18,6 +19,7 @@ namespace Tango.BLL.Mappers
public void Map(OrganizationEntity source, Organization target)
{
target.ID = source.ID;
+ target.Name = source.Name;
new AddressToAddressModelMapper().Map(source.Address, target.Address);
new ContactToContactModelMapper().Map(source.Contact, target.Contact);
}