示例#1
0
        public async Task <IEnumerable <ServiceMethodQueryModel> > Handle(GetServiceMethodsQuery request, CancellationToken cancellationToken)
        {
            var serviceMethods = await _serviceMethodQueryRepository.GetAllServiceMethods().ConfigureAwait(false);

            return(serviceMethods);
        }