예제 #1
0
 public void UpdateFrom(PersonPostRequest source, EntityUpdateOptions options = null)
 {
     this.Name    = source.Name;
     this.Version = source.Version;
 }
예제 #2
0
 public void UpdateFrom(PersonGetRequest source, EntityUpdateOptions options = null)
 {
 }
예제 #3
0
 public void UpdateFrom(PersonDTO source, EntityUpdateOptions options = null)
 {
     Name = source.Name;
 }
예제 #4
0
 public void UpdateFrom(PersonM source, EntityUpdateOptions options = null)
 {
     throw new NotImplementedException();
 }
예제 #5
0
 public void UpdateFrom(AuthorRequest source, EntityUpdateOptions options = null)
 {
     this.Name      = source.Name;
     this.BirthDate = source.BirthDate;
 }
예제 #6
0
파일: Book.cs 프로젝트: gabesantos1/Naylah
 public void UpdateFrom(BookRequest source, EntityUpdateOptions options = null)
 {
     this.Title        = source.Title;
     this.AuthorId     = source.AuthorId;
     this.ReleasedYear = source.ReleasedYear;
 }