public void CreateProperty(PropertyModel model)
 {
     _service.CreateProperty(new Property()
     {
         Address             = model.Address,
         Name                = model.Name,
         Price               = model.Price.Value,
         PropertyDescription = model.PropertyDescription,
         Id = model.Id
     });
 }