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); }
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 }