示例#1
0
 public bool Delete(Catagory catagory)
 {
     return(_catagoryRepository.Delete(catagory));
 }
示例#2
0
        private async void DeleteCatagory(int obj)
        {
            await catagoryRepository.Delete(obj);

            CatagoryViewModel.raise(typeof(ListCatagoryViewModel), null);
        }