private void ProcessData(string response) { var result = SyncData.FromJson(response); if (result != null) { DoSync(result); } }
private void ProcessData(string response) { var result = SyncData.FromJson(response); if (result != null) { if (DoSync(result)) { SetLastSyncInvoice(); } return; } }