public SpotFacade(ISpotCore spotCore, ISpotResponse response, IAtomicSpotWork spotWork, ISpotRepository spotRepository, IBusinessRepository businessRepository,
                   ISpotUserRepository spotUserRepository, ILocationRepository locationRepository, IExceptionLogFacade exceptionLogFacade)
 {
     _spotCore           = spotCore;
     _response           = response;
     _spotWork           = spotWork;
     _spotRepository     = spotRepository;
     _businessRepository = businessRepository;
     _spotUserRepository = spotUserRepository;
     _locationRepository = locationRepository;
     _exceptionLogFacade = exceptionLogFacade;
 }
Ejemplo n.º 2
0
        public EventController(ISpotUser user, IEventResponse response, IAtomicSpotWork atomicSpotWork,
                               IAtomicEventWork atomicEventWork, IEventFacade eventFacade, ISpotFacade spotFacade)
        {
            _user     = user;
            _response = response;

            _atomicSpotWork  = atomicSpotWork;
            _atomicEventWork = atomicEventWork;

            _eventFacade = eventFacade;
            _spotFacade  = spotFacade;
        }