Пример #1
0
 public void InsertFormato(FormatoExport f)
 {
     dataFormatos = new DataFormatos();
     try
     {
         dataFormatos.Insert(f);
     }
     catch (AppException appex)
     {
         throw appex;
     }
     catch (Exception ex)
     {
         throw new AppException("Error no controlado durante la creación del nuevo formato.", "Fatal", ex);
     }
 }
Пример #2
0
 public void DeleteFormato(FormatoExport f)
 {
     dataFormatos = new DataFormatos();
     try
     {
         dataFormatos.Delete(f);
     }
     catch (AppException appex)
     {
         throw appex;
     }
     catch (Exception ex)
     {
         throw new AppException("Error no controlado durante la baja del formato.", "Fatal", ex);
     }
 }
Пример #3
0
        public List <FormatoExport> GetAll()
        {
            List <FormatoExport> formatos;

            dataFormatos = new DataFormatos();
            try
            {
                formatos = dataFormatos.GetFormatos();
            }
            catch (AppException appex)
            {
                throw appex;
            }
            catch (Exception ex)
            {
                throw new AppException("Error no controlado durante la obtencion de los formatos", "Fatal", ex);
            }
            return(formatos);
        }