/// <summary> /// Descripción: Obtiene las redes filtrado por el Nombre. /// Author: Terceros. /// Fecha Creacion: 01/01/2017 /// Fecha Modificación: 02/02/2017. /// Modificación: Se agregaron comentarios. /// </summary> /// <param name="nombre"></param> /// <returns></returns> public List <RedMant> GetRedes(string nombre) { var objCommand = GetSqlCommand("pNLS_RedMant"); InputParameterAdd.Varchar(objCommand, "nombre", nombre); return(RedMantConverterTo.Redes(Execute(objCommand))); }