コード例 #1
0
ファイル: ChequeraPL.cs プロジェクト: vijaydairyf/Prueba
        public int ObtenerConsecutivo(int OrganizacionId)
        {
            try
            {
                Logger.Info();
                var chequeraBL = new ChequeraBL();
                var lista      = chequeraBL.ObtenerConsecutivo(OrganizacionId);

                return(lista);
            }
            catch (ExcepcionGenerica)
            {
                throw;
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
        }