/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
|
*/
|
package com.megatim.fdxcommons.tools.database.contrat;
|
|
import com.megatim.fdxcommons.tools.database.queries.metadata.JsonFdxParsedDataIterator;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public interface JsonInsert {
|
long insert(JsonFdxParsedDataIterator parsedDataIterator) throws Exception;
|
}
|