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