Import - Export ⚙️ implementation for payroll

This commit is contained in:
gamonoid
2017-10-08 19:31:27 +02:00
parent ddb46d8443
commit 088817172f
11 changed files with 619 additions and 35 deletions

View File

@@ -0,0 +1,15 @@
<?php
/**
* Created by PhpStorm.
* User: Thilina
* Date: 10/3/17
* Time: 5:54 PM
*/
namespace Data\Admin\Api;
interface DataImporter
{
public function getResult();
public function process($data, $dataImporterId);
}