private DataTable GetTempDataTable()
    {
        #region
        DataTable dt = null;
        try
        {
            ALOModel.MaintainDisType109Tmp BCO = new ALOModel.MaintainDisType109Tmp(ConnectionDB);
            dt = BCO.GetDisType109TmpSchema();
        }
        catch (Exception ex)
        {
            ErrorMsgLabel.Text = ex.Message;
        }

        return dt;
        #endregion
    }
Esempio n. 2
0
 private void MakeDataTableDisType109Tmp()
 {
     #region
     try
     {
         ALOModel.MaintainDisType109Tmp BCO = new ALOModel.MaintainDisType109Tmp(ConnectionDB);
         dtDisTypeTmp109 = BCO.GetDisType109TmpSchema();
     }
     catch (Exception ex)
     {
         ErrorMsgLabel.Text = ex.Message;
     }
     #endregion
 }