Exemplo n.º 1
0
 public CompilationController
 (
     IMapper mapper,
     CompilationService compilationService,
     ICompilationRepository compilationRepository
 )
 {
     _mapper                = mapper;
     _compilationService    = compilationService;
     _compilationRepository = compilationRepository;
 }
Exemplo n.º 2
0
 public CompilationExists(ICompilationRepository compilationRepository)
 {
     _compilationRepository = compilationRepository;
 }
Exemplo n.º 3
0
 public CompilationService(ICompilationRepository compilationRepository)
 {
     _compilationRepository = compilationRepository;
 }