public PersonCommandProcessor(IRepository <Person> personRepository, ICommandDictionary <Person> personcommandDictionary) : base(personRepository, personcommandDictionary)
 {
 }
Ejemplo n.º 2
0
 public CommandProcessor(IRepository <T> repository, ICommandDictionary <T> commandDictionary)
 {
     _repository        = repository;
     _entity            = _repository.Get();
     _commandDictionary = commandDictionary;
 }