Async await pattern Example: var entity = await Service.GetEntity(id); var entities = await Service.GetEntities(); ``` public async Task<Entity> GetEntity(long id) { return new Entity { ID = id }; } ```