Example #1
0
        public object BindData(string action, Dictionary <string, object> extraParams)
        {
            StoreRequestParameters prms = new StoreRequestParameters(extraParams);

            int total;

            List <Employee> data = EP.GetEmployees(prms.Limit, prms.Start, out total);

            return(new { data, total });
        }