コード例 #1
0
ファイル: EmpresaBL.cs プロジェクト: CPicinin/Repository_PDM
 public Empresa buscaEmpresa(int idEmpresa)
 {
     EmpresaDA eda = new EmpresaDA();
     Empresa e = new Empresa();
     e = eda.buscaEmpresa(idEmpresa);
     return e;
 }
コード例 #2
0
ファイル: EmpresaBL.cs プロジェクト: CPicinin/Repository_PDM
 public int cadastraEmpresa(Empresa emp)
 {
     EmpresaDA eda = new EmpresaDA();
     int id = eda.cadastraEmpresa(emp);
     return id;
 }