示例#1
0
        public async Task Execute(Guid appCommandSetId, IAppCommandHalClientFactory halClientFactory)
        {
            var entity = await this.Entity(appCommandSetId);

            var link   = JsonConvert.DeserializeObject <HalLink>(entity.Json);
            var client = await halClientFactory.Load(link);
        }
示例#2
0
        public async Task <EntryPoint> Execute(Guid appCommandSetId, [FromServices] IAppCommandHalClientFactory halClientFactory)
        {
            await repo.Execute(appCommandSetId, halClientFactory);

            return(new EntryPoint()); //Have to return something, need to fix this bug
        }