AzureTicker.Worker.Controllers.NotificationController.Post C# (CSharp) Метод

Post() приватный Метод

private Post ( Notification notification ) : string
notification AzureTicker.Worker.Model.TableStorage.Notification
Результат string
        public string Post(Notification notification)
        {
            string retVal = string.Empty;
            notification.PartitionKey = "partitionName";
            using (INotificationRepository rep = new NotificationRepository())
            {
                rep.AddOrUpdate(notification);
                rep.SaveChanges();
                retVal = notification.RowKey;
            }
            return retVal;
        }