Exemplo n.º 1
0
 public FlightService(FlightRepository repository, AeroplaneRepository aeroplaneRepository)
 {
     _repository          = repository;
     _aeroplaneRepository = aeroplaneRepository;
 }
 public AeroplaneService(AeroplaneRepository repository)
 {
     _repository = repository;
 }