예제 #1
0
 public static bool insertCategory(APCEntities APCContext, string name)
 {
     if (name.Trim() != "")
     {
         Category category = new Category();
         category.Name = name;
         //category.ServiceCharge = serviceCharge;
         APCContext.AddToCategory(category);
         APCContext.SaveChanges();
         return true;
     }
     else
         return false;
 }
예제 #2
0
 public static bool insertCategory(APCEntities APCContext, string name)
 {
     if (name.Trim() != "")
     {
         Category category = new Category();
         category.Name = name;
         //category.ServiceCharge = serviceCharge;
         APCContext.AddToCategory(category);
         APCContext.SaveChanges();
         return(true);
     }
     else
     {
         return(false);
     }
 }