Class DeleteCustomerCommand

java.lang.Object
com.brodygaudel.bank.common.command.BaseCommand<String>
com.brodygaudel.bank.common.command.customer.DeleteCustomerCommand

public class DeleteCustomerCommand extends BaseCommand<String>
Command to delete a customer.

This command is used to initiate the deletion of a customer. It includes the unique identifier of the customer inherited from the BaseCommand class.

See Also:
  • Constructor Details

    • DeleteCustomerCommand

      public DeleteCustomerCommand(String id)
      Constructs a new instance of DeleteCustomerCommand with the specified unique identifier.
      Parameters:
      id - The unique identifier for the customer to be deleted.