public async Task PutAsync <T>() where T : EntityBase, new() { var items = Connection.Table <T>().Where(e => e.Status == EntityStatus.Modified && e.Id != null).ToList(); await _client.PutAsync <string>("contacts", items); }