public void Insertar(Standar standar)
 {
     try
         {
             StandarAD standarAD = new StandarAD();
             int idstandar = standarAD.Insertar(standar);
         }
     catch (Exception e)
         {
     throw e;
         }
 }
 public static List<Standar> Verificar_duplicidad_Estandar(string IdArea, DateTime FechaInicio)
 {
     List<Standar> standares = new List<Standar>();
     try
     {
         StandarAD standarAD = new StandarAD();
         standares = standarAD.Verificar_duplicidad_Estandar(IdArea, FechaInicio);
     }
     catch (Exception e)
     {
         throw e;
     }
     return standares;
 }
 public void Actualizar(Standar standar)
 {
     try
     {
         StandarAD standarAD = new StandarAD();
         int idstandar = standarAD.Actualizar(standar);
     }
     catch (Exception e)
     {
         throw e;
     }
 }