Пример #1
0
        public void Insert(int ProductCategoryID, string Name, Guid Rowguid, DateTime ModifiedDate)
        {
            ProductSubcategory item = new ProductSubcategory();

            item.ProductCategoryID = ProductCategoryID;

            item.Name = Name;

            item.Rowguid = Rowguid;

            item.ModifiedDate = ModifiedDate;


            item.Save(UserName);
        }
Пример #2
0
 public bool Destroy(object ProductSubcategoryID)
 {
     return(ProductSubcategory.Destroy(ProductSubcategoryID) == 1);
 }
Пример #3
0
 public bool Delete(object ProductSubcategoryID)
 {
     return(ProductSubcategory.Delete(ProductSubcategoryID) == 1);
 }