示例#1
0
        public Task <PagedCollection <PersonByName> > FindOtherPeopleWithTheSameName()
        {
            var query = new FindPeopleByName {
                Term = Name.Full
            };

            return(DomainQueryDispatcher.Execute(query));
        }
示例#2
0
 public Task <PagedCollection <PersonByName> > Handle(FindPeopleByName request, CancellationToken cancellationToken)
 {
     throw new NotImplementedException();
 }