/*
|
* 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.fdxconsultation.dao.ifaces.supervision;
|
|
import com.megatim.fdxcommons.dao.ifaces.abstracts.CustomDAOIfaces;
|
import com.megatim.fdxconsultation.model.supervision.AgentConfigurationEntity;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public interface AgentConfigurationEntityDAO extends CustomDAOIfaces<AgentConfigurationEntity, Long, AgentConfigurationEntity> {
|
int archiveAgentConfiguration(String code);
|
}
|