コード例 #1
0
ファイル: LotePL.cs プロジェクト: vijaydairyf/Prueba
        public List <LoteInfo> ObtenerLotesConAnimalesDisponiblesPorOrganizacionId(int organizacionId)
        {
            var result = new List <LoteInfo>();

            try
            {
                Logger.Info();
                var loteBL = new LoteBL();
                result = loteBL.ObtenerLotesConAnimalesDisponiblesPorOrganizacionId(organizacionId);
            }
            catch (ExcepcionGenerica)
            {
                throw;
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
            return(result);
        }