예제 #1
0
 public Response Delete(long ProID)
 {
     return(repo.Delete(ProID));
 }
예제 #2
0
 public bool Delete(int typeId, int attributeId) => _repository.Delete(typeId, attributeId);
예제 #3
0
 public void Delete(Property item)
 {
     _PropertyRepository.Delete(item.Id);
     List.ItemsSource = _PropertyRepository.GetAll();
 }