BlueCollar.Dashboard.ScheduleListHandler.PerformRequest C# (CSharp) Method

PerformRequest() protected method

Performs the concrete request operation and returns the output as a byte array.
protected PerformRequest ( System.Web.HttpContextBase context ) : byte[]
context System.Web.HttpContextBase The HTTP context to perform the request for.
return byte[]
        protected override byte[] PerformRequest(HttpContextBase context)
        {
            return Json(
                Repository.GetScheduleList(
                    ApplicationName,
                    QueryString["q"],
                    Helper.PageSize,
                    Helper.PagingOffset(Helper.QueryIntValue("p")),
                    null));
        }