public async Task <T> LoadAsync <T>(string query) where T : new()
 {
     return(await GetConnection.FindAsync <T>(query));
 }