예제 #1
0
파일: BCategoria.cs 프로젝트: terbas1/LAb05
 public void Delete(int idcategoria)
 {
     try
     {
         dCategoria = new DCategoria();
         dCategoria.Delete(idcategoria);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
예제 #2
0
 public bool Delete(int idcategoria)
 {
     try
     {
         dCategoria = new DCategoria();
         dCategoria.Delete(idcategoria);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return(true);
 }