devel cursos

git-svn-id: https://svn.coded.pt/svn/SIPRP@1361 bb69d46d-e84e-40c8-a05a-06db0d633741
0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z
Luis Flores 15 years ago
parent dc796fd689
commit 8543899f71

@ -14,9 +14,20 @@ import com.evolute.swing.frame.EvoFrame;
*/
public class AutorizacaoLogic implements AutorizacaoLogicInterface
{
private static AutorizacaoLogic logic = null;
private AutorizacaoLogic()
{
}
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

@ -13,9 +13,20 @@ import com.evolute.genericpeople.AutorizacaoProviderInterface;
*/
public class AutorizacaoProvider implements AutorizacaoProviderInterface
{
private static AutorizacaoProvider provider = null;
private AutorizacaoProvider()
{
}
public static AutorizacaoProvider getProvider()
throws Exception
{
return null;
if( provider == null )
{
provider = new AutorizacaoProvider();
}
return provider;
}
public Integer getAutorizadorCursos()

@ -15,9 +15,20 @@ import com.evolute.utils.data.IDObject;
*/
public class EntidadesProvider implements EntidadesProviderInterface
{
private static EntidadesProvider provider = null;
private EntidadesProvider()
{
}
public static EntidadesProvider getProvider()
throws Exception
{
return null;
if( provider == null )
{
provider = new EntidadesProvider();
}
return provider;
}
public EntidadeInterface loadEntidade(Integer intgr) throws Exception

@ -22,9 +22,20 @@ import java.util.List;
*/
public class PessoasProvider implements PessoasProviderInterface
{
private static PessoasProvider provider = null;
private PessoasProvider()
{
}
public static PessoasProvider getProvider()
throws Exception
{
return null;
if( provider == null )
{
provider = new PessoasProvider();
}
return provider;
}
public void setDocumentosForPessoa(Integer intgr, PessoaDocumentoInterface[] pdis) throws Exception

Loading…
Cancel
Save