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

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