Ejemplo n.º 1
0
 public AiringIdService(IAiringIdCreator creator, IIdDistributor distributor, IAiringIdDeleteCommand deleteCommand, IGetAiringIdsQuery query)
 {
     this.creator       = creator;
     this.distributor   = distributor;
     this.deleteCommand = deleteCommand;
     this.query         = query;
 }
Ejemplo n.º 2
0
 public IdDistributor(
     IAiringIdCreator creator,
     IGetLastAiringIdQuery query,
     IAiringIdSaveCommand command)
 {
     _creator = creator;
     _query   = query;
     _command = command;
 }