// Methods.
        public SchedulerReadFacadeService(ISchedulerReadService schedulerReadService)
        {
            if (schedulerReadService == null)
            {
                throw new ArgumentException("Dependency should not be null.", "schedulerReadService");
            }

            _SchedulerReadService = schedulerReadService;
        }
Пример #2
0
        // Methods.
        public SchedulerReadFacadeService(ISchedulerReadService schedulerReadService)
        {
            if (schedulerReadService == null)
            {
                throw new ArgumentException("Dependency should not be null.", "schedulerReadService");
            }

            _SchedulerReadService = schedulerReadService;
        }