44 lines
480 B
PHP
Executable File
44 lines
480 B
PHP
Executable File
<?php
|
|
namespace IpSupply\Prology\Api\Interface;
|
|
interface ErpInterface
|
|
{
|
|
|
|
/**
|
|
* POST
|
|
* @return string
|
|
*/
|
|
public function createProductFromErp();
|
|
|
|
/**
|
|
* POST
|
|
* @return string
|
|
*/
|
|
public function deleteProductFromErp();
|
|
|
|
/**
|
|
* get
|
|
* @return string
|
|
*/
|
|
public function getAllCategories();
|
|
|
|
/**
|
|
* POST
|
|
* @return string
|
|
*/
|
|
public function updatePriceAndQty();
|
|
|
|
/**
|
|
* GET
|
|
* @return array
|
|
*/
|
|
public function getAllBrands();
|
|
|
|
/**
|
|
* GET
|
|
* @return array
|
|
*/
|
|
public function getAllTypes();
|
|
|
|
}
|
|
|