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; }
public BusinessFacade(IBusiness business, IGroup group, ILocation location, ISpot spot, ISpotUser user, IEvent @event, IBusinessResponse response, IAtomicBusinessWork atomicBusinessWork, IExceptionLogFacade exceptionLogFacade) { _business = business; _group = group; _location = location; _spot = spot; _user = user; _event = @event; _response = response; _atomicWork = atomicBusinessWork; _exceptionLogFacade = exceptionLogFacade; }
public AccountFacade(IGroup group, IAtomicUserWork atomicUserWork, IExceptionLogFacade exceptionLogFacade) { _group = group; _atomicUserWork = atomicUserWork; _exceptionLogFacade = exceptionLogFacade; }