public Rental(PostRental postRental) { Description = postRental.Description; NumberOfRooms = postRental.NumberOfRooms; Price = postRental.Price; Address = (postRental.Address ?? string.Empty).Split('\n').ToList(); }