Affecto.IdentityManagement.ApplicationServices.UserService.UserService C# (CSharp) Метод

UserService() публичный Метод

public UserService ( IQueryService queryService, Lazy commandBus ) : System
queryService IQueryService
commandBus Lazy
Результат System
        public UserService(IQueryService queryService, Lazy<ICommandBus> commandBus)
        {
            if (queryService == null)
            {
                throw new ArgumentNullException("queryService");
            }
            if (commandBus == null)
            {
                throw new ArgumentNullException("commandBus");
            }

            this.queryService = queryService;
            this.commandBus = commandBus;
        }