Esempio n. 1
0
 /// <summary>Updates the specified EntityModel.EntityClasses.PersonEntity entity with the values stored in the dto object specified</summary>
 /// <param name="toUpdate">the entity instance to update.</param>
 /// <param name="dto">The dto object containing the source values.</param>
 /// <remarks>The PK field of toUpdate is set only if it's not marked as readonly.</remarks>
 public static void UpdateFromActorPersonDto(this EntityModel.EntityClasses.PersonEntity toUpdate, Dto.DtoClasses.ActorPersonDto dto)
 {
     if ((toUpdate == null) || (dto == null))
     {
         return;
     }
     toUpdate.CollectionId = dto.CollectionId;
     toUpdate.Firstname    = dto.Firstname;
     toUpdate.Id           = dto.Id;
     toUpdate.Lastname     = dto.Lastname;
 }
Esempio n. 2
0
 /// <summary>Extension method which produces a projection to Dto.DtoClasses.ActorPersonDto which instances are projected from the
 /// EntityModel.EntityClasses.PersonEntity entity instance specified, the root entity of the derived element returned by this method.</summary>
 /// <param name="entity">The entity to project from.</param>
 /// <returns>EntityModel.EntityClasses.PersonEntity instance created from the specified entity instance</returns>
 public static Dto.DtoClasses.ActorPersonDto ProjectToActorPersonDto(this EntityModel.EntityClasses.PersonEntity entity)
 {
     return(_compiledProjector(entity));
 }