|
|
|
@ -14,9 +14,20 @@ import com.evolute.swing.frame.EvoFrame;
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public class AutorizacaoLogic implements AutorizacaoLogicInterface
|
|
|
|
public class AutorizacaoLogic implements AutorizacaoLogicInterface
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
private static AutorizacaoLogic logic = null;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private AutorizacaoLogic()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static AutorizacaoLogic getLogic()
|
|
|
|
public static AutorizacaoLogic getLogic()
|
|
|
|
|
|
|
|
throws Exception
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
if( logic == null )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
logic = new AutorizacaoLogic();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return logic;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean insertPedido(EvoFrame ef, Integer intgr, String string, String string1, byte[] bytes, Integer intgr1) throws Exception
|
|
|
|
public boolean insertPedido(EvoFrame ef, Integer intgr, String string, String string1, byte[] bytes, Integer intgr1) throws Exception
|
|
|
|
|