예제 #1
0
 public AnaliseService(IIntermeioRepository Intermeiorepository, IPhoebusRepository phoebusRepository, IAnaliseRepository analiseRepository, IIntermeioService intermeioService)
 {
     _IntRepository    = Intermeiorepository;
     _phRepository     = phoebusRepository;
     _analiRepository  = analiseRepository;
     _IntermeioService = intermeioService;
 }
 public IntermaioController(IIntermeioRepository context, IIntermeioService intermeioService, IMapper mapper)
 {
     _intService    = intermeioService;
     _mapper        = mapper;
     _intRepository = context;
 }
예제 #3
0
 public IntermeioService(IIntermeioRepository repository)
 {
     _IntRepository = repository;
 }