. */ namespace SP\Domain\Import; use Exception; use SP\Domain\Import\Services\ImportParams; /** * Esta clase es la encargada de importar cuentas. */ interface ImportServiceInterface { /** * Iniciar la importación de cuentas. * * @return int Returns the total number of imported items * @throws Exception */ public function doImport(ImportParams $importParams, FileImportInterface $fileImport): int; }