Пример #1
0
 protected void btnRecalc_Click(object sender, EventArgs e)
 {
     try
     {
         IList <CycleCountResult> cycleCountResultList = TheCycleCountMgr.ReCalcCycleCount(this.code, this.CurrentUser);
         this.BindData(cycleCountResultList);
         ShowSuccessMessage("Common.Business.Result.Update.Successfully");
     }
     catch (BusinessErrorException ex)
     {
         ShowErrorMessage(ex);
     }
 }