public ExhibitController(IAudioFileService audioFileService, IExhibitService exhibitService, IKnowledgeLevelService knowledgeLevelService, ILanguageService languageService)
 {
     this._audioFileService      = audioFileService;
     this._exhibitService        = exhibitService;
     this._knowledgeLevelService = knowledgeLevelService;
     this._languageService       = languageService;
 }
 public AudioController(IAudioFileService audioFileService, ILanguageService languageService, IKnowledgeLevelService knowledgeLevelService, IExhibitService exhibitService)
 {
     this._audioFileService = audioFileService;
     this._languageService = languageService;
     this._knowledgeLevelService = knowledgeLevelService;
     this._exhibitService = exhibitService;
 }
Exemplo n.º 3
0
 public DurationService(IUnitOfWork unitOfWork, IRoomService roomService, IExhibitService exhibitService, IShortestPathAndSuggestRouteService shortestPathAndSuggestRouteService)
 {
     _roomService    = roomService;
     _unitOfWork     = unitOfWork;
     _exhibitService = exhibitService;
     _shortestPathAndSuggestRouteService = shortestPathAndSuggestRouteService;
 }
Exemplo n.º 4
0
 public ExhibitController(IExhibitService service)
 {
     _service = service;
 }
Exemplo n.º 5
0
 public ExhibitController(IExhibitService exhibitService)
 {
     _exhibitService = exhibitService;
 }
 public FileController(IAudioFileService audioFileService, IExhibitService exhibitService, ICustomerService customerService)
 {
     this._audioFileService = audioFileService;
     this._exhibitService = exhibitService;
     this._customerService = customerService;
 }
Exemplo n.º 7
0
 public FileController(IAudioFileService audioFileService, IExhibitService exhibitService, ICustomerService customerService)
 {
     this._audioFileService = audioFileService;
     this._exhibitService   = exhibitService;
     this._customerService  = customerService;
 }