public GenericServiceOptions Generic(Type generic, string name)
        {
            var command = new GenericServiceCommand
            {
                Service = generic,
                Name    = name
            };

            commands.Add(command);
            return(new GenericServiceOptions(command));
        }
 public GenericServiceOptions(GenericServiceCommand command)
 {
     this.command = command;
 }
 public GenericImplementorOptions(GenericServiceCommand command)
 {
     this.command = command;
 }
Ejemplo n.º 4
0
 public GenericServiceOptions(GenericServiceCommand command)
 {
     this.command = command;
 }
Ejemplo n.º 5
0
 public GenericImplementorOptions(GenericServiceCommand command)
 {
     this.command = command;
 }