public CreatePersonConsumer(IPersonCollection personCollection, IPersonOperations operations)
 {
     _personCollection = personCollection;
     _operations       = operations;
 }
Exemplo n.º 2
0
 public PersonController(IHostingEnvironment hostingEnvironment, IPersonOperations personOperations)
 {
     this.hostingEnvironment = hostingEnvironment;
     this.personOperations   = personOperations;
 }