示例#1
0
 public CompilationController
 (
     IMapper mapper,
     CompilationService compilationService,
     ICompilationRepository compilationRepository
 )
 {
     _mapper                = mapper;
     _compilationService    = compilationService;
     _compilationRepository = compilationRepository;
 }
 public CompilationExists(ICompilationRepository compilationRepository)
 {
     _compilationRepository = compilationRepository;
 }
 public CompilationService(ICompilationRepository compilationRepository)
 {
     _compilationRepository = compilationRepository;
 }