private void OnPropertyListUpdated(PaginatedPropertyList result)
 {
     if (PropertyListUpdatedHandler != null)
     {
         var args = new PaginatedPropertyListUpdatedEventArgs()
         {
             LastResult = result
         };
         PropertyListUpdatedHandler(this, args);
     }
 }
		private void OnPropertyListUpdated(PaginatedPropertyList result)
		{
			if(PropertyListUpdatedHandler != null) {
				var args = new PaginatedPropertyListUpdatedEventArgs () {
					LastResult = result
				};
				PropertyListUpdatedHandler (this, args);
			}
		}