예제 #1
0
 public Rental(PostRental postRental)
 {
     Description   = postRental.Description;
     NumberOfRooms = postRental.NumberOfRooms;
     Price         = postRental.Price;
     Address       = (postRental.Address ?? string.Empty).Split('\n').ToList();
 }
예제 #2
0
파일: Rental.cs 프로젝트: nrock/MongoCms
 public Rental(PostRental postRental)
 {
     Description = postRental.Description;
     NumberOfRooms = postRental.NumberOfRooms;
     Price = postRental.Price;
     Address = (postRental.Address ?? string.Empty).Split('\n').ToList();
 }