Neur0toxine
09f82bcfdf
* remove useless request for history * append new address to corporate customer * centralized configuration provider * use companyName filter in event & pass companyName into order * add AdressBuilder* fixed for regressions * fixed double contact problem
21 lines
327 B
PHP
21 lines
327 B
PHP
<?php
|
|
|
|
IncludeModuleLangFile(__FILE__);
|
|
|
|
interface RetailcrmBuilderInterface
|
|
{
|
|
/**
|
|
* Set data array customerHistory
|
|
*
|
|
* @param array $dataCrm
|
|
*
|
|
* @return RetailcrmBuilderInterface
|
|
*/
|
|
public function setDataCrm($dataCrm);
|
|
|
|
/**
|
|
* Build result
|
|
*/
|
|
public function build();
|
|
}
|