예제 #1
0
        public static void UpdateCustomer(CloudTable table, CustomerUS customer)
        {
            var update = TableOperation.Replace(customer);

            table.Execute(update);
        }
예제 #2
0
        public static void DeleteCustomer(CloudTable table, CustomerUS customer)
        {
            var delete = TableOperation.Delete(customer);

            table.Execute(delete);
        }
예제 #3
0
        public static void CreateCustomer(CloudTable table, CustomerUS customer)
        {
            var insert = TableOperation.Insert(customer);

            table.Execute(insert);
        }