protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         mvMain.SetActiveView(viewGrid);
         reportControl.BranchName  = BrokerHouseInformation.GetBrokerHouseNameByCode(BrokerHouseInformation.FIRST_ROW);
         reportControl.CompanyName = "Брокерско друштво";
         GXGridView1.TotalRecords  = ViewRollBacksDeliveredInCompany.SelectCountCached();
     }
 }
 protected void FilterControl1_Filter(object sender, EventArgs e)
 {
     GXGridView1.TotalRecords = ViewRollBacksDeliveredInCompany.SelectFilterCountCached(FilterControl1.FCFilterArgument);
 }
 protected void SearchControl1_Search(object sender, EventArgs e)
 {
     GXGridView1.TotalRecords = ViewRollBacksDeliveredInCompany.SelectSearchCountCached(SearchControl1.SearchArguments);
     mvMain.SetActiveView(viewGrid);
 }