AzureTicker.Worker.Model.Repositories.NotificationRepository.UpdateBalance C# (CSharp) Метод

UpdateBalance() публичный Метод

public UpdateBalance ( Notification notification, string newBalance ) : void
notification AzureTicker.Worker.Model.TableStorage.Notification
newBalance string
Результат void
        public void UpdateBalance(Notification notification, string newBalance)
        {
            notification.LastUpdate = DateTime.UtcNow;
            notification.BalanceString = newBalance;
            context.UpdateObject(notification);
        }