public void CheckLocateMonthlyClose(ArrayList ParameterList, out string V_RESULT, out string V_ERR_MSG, out DataTable T_VENDOR)
 {
     try
     {
         DBO.PSS011_DBO dbo = new PSS011_DBO(ref USEDB);
         T_VENDOR = dbo.doCheckLocateMonthlyClose(ParameterList, out V_RESULT, out V_ERR_MSG);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#2
0
 public void UnCheckCloseLedger(ArrayList ParameterList, out string V_RESULT, out string V_ERR_MSG)
 {
     try
     {
         DBO.PSS011_DBO dbo = new PSS011_DBO(ref USEDB);
         dbo.doUnCheckCloseLedger(ParameterList, out V_RESULT, out V_ERR_MSG);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void CheckChanMonthlyClose(ArrayList ParameterList, out DataTable T_VENDOR)
 {
     try
     {
         DBO.PSS011_DBO dbo = new PSS011_DBO(ref USEDB);
         T_VENDOR = dbo.doCheckChanMonthlyClose(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }