コード例 #1
0
ファイル: TecnicaController.cs プロジェクト: 1000VIA/SRA
        public IHttpActionResult ConsultarColegiosId(ParametrosDTO oParametros)
        {
            try
            {
                TecnicaBl objConsultarColegioBl = new TecnicaBl();

                var Datos = objConsultarColegioBl.ConsultarColegiosId(oParametros.Parametro1);

                ColegioDTO Colegios = new ColegioDTO();

                if (Datos != null)
                {
                    return(Ok(new { success = true, Datos = Datos }));
                }
                else
                {
                    return(Ok(new { success = false, Datos = Datos }));
                }
            }
            catch (Exception exc)
            {
                return(Ok(new { success = false, exc = exc.Message }));
            }
        }