Exemplo n.º 1
0
 public GetErrorCode5Command(IOptionObjectDecorator optionObjectDecorator)
 {
     _optionObject = optionObjectDecorator;
 }
Exemplo n.º 2
0
 public SetFieldValueCommand(IOptionObjectDecorator optionObjectDecorator, IParameter parameter)
 {
     _optionObject = optionObjectDecorator;
     _parameter    = parameter;
 }
Exemplo n.º 3
0
 public DefaultScriptCommand(IOptionObjectDecorator optionObjectDecorator, IParameter parameter)
 {
     _optionObject = optionObjectDecorator;
     _parameter    = parameter;
 }
 public SendEmailCommand(IOptionObjectDecorator optionObject, ISmtpService smtpService)
 {
     _optionObject = optionObject;
     _smtpService  = smtpService;
 }
 public HelloWorldCommand(IOptionObjectDecorator optionObject)
 {
     _optionObject = optionObject;
 }
 public GetOdbcDataCommand(IOptionObjectDecorator optionObject, IGetDataRepository repository)
 {
     _optionObject = optionObject;
     _repository   = repository;
 }