Beispiel #1
0
 public ActorController(IMapper mapper, IActorRepositoryAsync actorRepositoryAsync)
 {
     actors = new Actors(mapper, actorRepositoryAsync);
 }
Beispiel #2
0
 public Actors(IMapper mapper, IActorRepositoryAsync actorRepository)
 {
     _actorRepository = actorRepository;
     _mapper          = mapper;
 }