public async Task <T> LoadAsync <T>(object id) where T : new()
 {
     return(await GetConnection.GetAsync <T>(id));
 }