Ejemplo n.º 1
0
 public ResultModel GetActive()
 {
     try
     {
         var resultQuery = _studentBLL.GetActive();
         return(new ResultModel(Code.OK, _studentBLL.GetActive(), resultQuery.Count(), "thành công"));
     }
     catch (Exception)
     {
         return(new ResultModel(Code.SVERROR, "lỗi hệ thống"));
     }
 }