コード例 #1
0
 public static bool DeleteCategoryById(int id)
 {
     try
     {
         CategoryModel categoryModel = new CategoryModel()
         {
             Id_Category = id
         };
         return(CategoryConnection.DeleteCategoryById(categoryModel));
     }
     catch (Exception ex)
     {
         throw;
     }
 }