示例#1
0
 public ApplicationResult(DataTable dt)
 {
     Status         = CommonStatusType.Success;
     ErrorException = null;
     ResultDt       = dt;
     ResultObj      = null;
     ResultInt      = 0;
 }
示例#2
0
 public ApplicationResult(object objResult)
 {
     Status         = CommonStatusType.Success;
     ErrorException = null;
     ResultDt       = null;
     ResutlDs       = null;
     ResultObj      = objResult;
     ResultInt      = 0;
 }
示例#3
0
 public ApplicationResult(int integerresult)
 {
     Status         = CommonStatusType.Success;
     ErrorException = null;
     ResultDt       = null;
     ResutlDs       = null;
     ResultObj      = null;
     ResultInt      = integerresult;
 }
示例#4
0
 public ApplicationResult(string errMsg)
 {
     Status         = CommonStatusType.Failure;
     ErrorException = errMsg;
     ResultDt       = null;
     ResutlDs       = null;
     ResultObj      = null;
     ResultInt      = 0;
 }
示例#5
0
 public ApplicationResult(DataSet ds)
 {
     Status         = CommonStatusType.Success;
     ErrorException = null;
     //resultDT = dt;
     ResutlDs  = ds;
     ResultObj = null;
     ResultInt = 0;
 }
示例#6
0
 public ApplicationResult(object objResult)
 {
     status         = CommonStatusType.SUCCESS;
     errorException = null;
     resultDT       = null;
     resutlDS       = null;
     resultObj      = objResult;
     resultInt      = 0;
 }
示例#7
0
 public ApplicationResult()
 {
     status         = CommonStatusType.SUCCESS;
     errorException = null;
     resultDT       = null;
     resultDS       = null;
     resultObj      = null;
     resultInt      = 0;
 }
示例#8
0
 public ApplicationResult(DataTable dt)
 {
     //
     // TODO: Add constructor logic here
     //
     status         = CommonStatusType.SUCCESS;
     errorException = null;
     resultDT       = dt;
     resultObj      = null;
     resultInt      = 0;
 }
示例#9
0
 public ApplicationResult(int integerresult)
 {
     //
     // TODO: Add constructor logic here
     //
     status         = CommonStatusType.SUCCESS;
     errorException = null;
     resultDT       = null;
     resutlDS       = null;
     resultObj      = null;
     resultInt      = integerresult;
 }
示例#10
0
 public ApplicationResult(string errMsg)
 {
     //
     // TODO: Add constructor logic here
     //
     status         = CommonStatusType.FAILURE;
     errorException = errMsg;
     resultDT       = null;
     resutlDS       = null;
     resultObj      = null;
     resultInt      = 0;
 }