コード例 #1
0
 public static List <ProductCategory> GetAll()
 {
     try
     {
         return(DAL_ProductCategory.GetAll());
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #2
0
 public static void Update(ProductCategory model)
 {
     try
     {
         DAL_ProductCategory.Update(model);
     }
     catch (Exception)
     {
         throw;
     }
 }