예제 #1
0
 public ItInterfaceController(
     IGenericRepository <ItInterface> repository,
     IItInterfaceService itInterfaceService)
     : base(repository)
 {
     _itInterfaceService = itInterfaceService;
 }
예제 #2
0
 public ExhibitController(
     IGenericRepository <ItInterfaceExhibit> repository,
     IGenericRepository <ItInterface> interfaceRepository,
     IItInterfaceService interfaceService)
     : base(repository)
 {
     _repository          = repository;
     _interfaceRepository = interfaceRepository;
     _interfaceService    = interfaceService;
 }