Beispiel #1
0
 public string insertaempleados()
 {
     try
     {
         tablaempleados = new GrupoSM_Recepcion.BO.DS_MasterDatasetTableAdapters.EmpleadosTableAdapter();
         tablaempleados.Insert(this.nombre, this.Afinidad1, this.Afinidad2, this.Afinidad3);
         return("Correcto");
     }
     catch
     {
         return("Error(insertaempleados)");
     }
 }
Beispiel #2
0
 public DataTable devuelvetodoempleados()
 {
     tablaempleados = new GrupoSM_Recepcion.BO.DS_MasterDatasetTableAdapters.EmpleadosTableAdapter();
     return(tablaempleados.GetData());
 }