示例#1
0
 public static DoResult <List <ProductCategory> > GetAllProductCategory(long?actionUserId)
 {
     return(BUSCore.Do <List <ProductCategory> >(
                userId: actionUserId,
                action: (c) =>
     {
         // Cập nhật hệ thống
         var r = ProductCategoryDAO.GetList(c.Db);
         return r;
     }));
 }