Is this a command pattern?
String tableName = “Employee”;
TableOperation findEmployee = TableOperation.retrieve(“HR”, “999″, EmployeeEntity.class);
EmployeeEntity employeeEntity = tableClient.execute(tableName, findEmployee).getResultAsType();
TableOperation deleteEmployee = TableOperation.delete(employeeEntity);
tableClient.execute(tableName, deleteEmployee);