Beispiel #1
0
 public ApiClientCustomerEnrolRequest()
 {
     ApiClientCustomerId = CommandParameter.Output(SqlDbType.Int) as CommandOutputParameter;
     ActivationCode      = CommandParameter.Output(SqlDbType.VarChar, 15) as CommandOutputParameter;
 }
 public ApiClientCustomerRefreshRequest()
 {
     NewAccessToken    = CommandParameter.Output(SqlDbType.UniqueIdentifier) as CommandOutputParameter;
     NewRefreshToken   = CommandParameter.Output(SqlDbType.UniqueIdentifier) as CommandOutputParameter;
     NewEncryptionCode = CommandParameter.Output(SqlDbType.VarChar, 16) as CommandOutputParameter;
 }
 public DirectWebAuditorSprocArgs()
 {
     result = new CommandOutputParameter(System.Data.SqlDbType.VarChar, 100);
     args   = new CommandInputOutputParameter(System.Data.SqlDbType.NVarChar, 2000);
 }
 public ApiClientCustomerActivateRequest()
 {
     ApiClientCustomerId = CommandParameter.Output(SqlDbType.Int) as CommandOutputParameter;
     OldAccessToken      = CommandParameter.Output(SqlDbType.UniqueIdentifier) as CommandOutputParameter;
     OldEncryptionCode   = CommandParameter.Output(SqlDbType.VarChar, 32) as CommandOutputParameter;
 }