public static void UpdateCustomer(CloudTable table, CustomerUS customer) { var update = TableOperation.Replace(customer); table.Execute(update); }
public static void DeleteCustomer(CloudTable table, CustomerUS customer) { var delete = TableOperation.Delete(customer); table.Execute(delete); }
public static void CreateCustomer(CloudTable table, CustomerUS customer) { var insert = TableOperation.Insert(customer); table.Execute(insert); }