예제 #1
0
 public int InsertarEmpleado(Int64 Id, string Apellidos, string Nombres, double Horas, double Sueldo)
 {
     try
     {
         return(DAle.InsertarEmpleado(Id, Apellidos, Nombres, Horas, Sueldo));
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         DAle = null;
     }
 }