Existing Ecommerce plugins with Custom Post Types [closed]

You should download en use WooCommerce with buildin payment gateways

You can add a product type with something like:

function my_add_product_type( $types ) {
    return $types["service"] = "Service";
}
add_filter( "product_type_selector", "my_add_product_type" );