public void ListSorting(WACListControl wc, string _sortBy)
        {
            ServiceRequest sr = new ServiceRequest(this, ServiceFactory.ServiceTypes.SortGridView);

            sr.Requestor = wc;
            sr.ParmList.Add(new WACParameter(string.Empty, _sortBy, WACParameter.ParameterType.ListSort));
            ServiceFactory.Instance.ServiceRequest(sr);
            sr.ServiceRequested = ServiceFactory.ServiceTypes.UpdatePanelUpdate;
            ServiceFactory.Instance.ServiceRequest(sr);
            sr = null;
        }
        public void PageIndexChanging(WACListControl wc, int newPageIndex)
        {
            ServiceRequest sr = new ServiceRequest(this, ServiceFactory.ServiceTypes.PageGridView);

            sr.Requestor = wc;
            sr.ParmList.Add(new WACParameter(string.Empty, newPageIndex, WACParameter.ParameterType.ListPage));
            ServiceFactory.Instance.ServiceRequest(sr);
            sr.ServiceRequested = ServiceFactory.ServiceTypes.UpdatePanelUpdate;
            ServiceFactory.Instance.ServiceRequest(sr);
            sr = null;
        }
 public void ListReset(WACListControl wc)
 {
 }