/// <summary>
 /// Metodo para Guardar/Modificar una entidad CheckListRoladoraHorometro
 /// </summary>
 /// <param name="info"></param>
 public int Guardar(CheckListRoladoraHorometroInfo info)
 {
     try
     {
         Logger.Info();
         var checkListRoladoraHorometroDAL = new CheckListRoladoraHorometroDAL();
         int result = info.CheckListRoladoraHorometroID;
         if (info.CheckListRoladoraHorometroID == 0)
         {
             result = checkListRoladoraHorometroDAL.Crear(info);
         }
         else
         {
             checkListRoladoraHorometroDAL.Actualizar(info);
         }
         return(result);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }
 /// <summary>
 /// Obtiene un lista de CheckListRoladoraHorometro
 /// </summary>
 /// <returns></returns>
 public IList <CheckListRoladoraHorometroInfo> ObtenerTodos()
 {
     try
     {
         Logger.Info();
         var checkListRoladoraHorometroDAL             = new CheckListRoladoraHorometroDAL();
         IList <CheckListRoladoraHorometroInfo> result = checkListRoladoraHorometroDAL.ObtenerTodos();
         return(result);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }
 /// <summary>
 /// Obtiene un lista paginada
 /// </summary>
 /// <param name="pagina"></param>
 /// <param name="filtro"></param>
 /// <returns></returns>
 public ResultadoInfo <CheckListRoladoraHorometroInfo> ObtenerPorPagina(PaginacionInfo pagina, CheckListRoladoraHorometroInfo filtro)
 {
     try
     {
         Logger.Info();
         var checkListRoladoraHorometroDAL = new CheckListRoladoraHorometroDAL();
         ResultadoInfo <CheckListRoladoraHorometroInfo> result = checkListRoladoraHorometroDAL.ObtenerPorPagina(pagina, filtro);
         return(result);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }
 /// <summary>
 /// Obtiene una entidad CheckListRoladoraHorometro por su descripción
 /// </summary>
 /// <param name="descripcion"></param>
 /// <returns></returns>
 public CheckListRoladoraHorometroInfo ObtenerPorDescripcion(string descripcion)
 {
     try
     {
         Logger.Info();
         var checkListRoladoraHorometroDAL     = new CheckListRoladoraHorometroDAL();
         CheckListRoladoraHorometroInfo result = checkListRoladoraHorometroDAL.ObtenerPorDescripcion(descripcion);
         return(result);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }