예제 #1
0
        public static List <t_Files> GetList(int page, int rows, out int totalcount, t_Files parms = null)
        {
            Expression <Func <t_Files, Int64> > exp = (t) => t.Id;

            return(dal.GetListPaged <t_Files, Int64>(page, rows, exp, true, out totalcount));
        }
예제 #2
0
 public static bool Delete(t_Files entity)
 {
     return(dal.Delete(entity));
 }
예제 #3
0
 public static bool Add(t_Files entity)
 {
     return(dal.Add <t_Files>(entity));
 }