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