public static IList <YouCom.DTO.AreasComunesDTO> getListadoAreasComunes() { IList <YouCom.DTO.AreasComunesDTO> IAreasComunes = new List <YouCom.DTO.AreasComunesDTO>(); DataTable pobjDataTable = new DataTable(); if (YouCom.DAL.AreasComunesDAL.getListadoAreasComunes(ref pobjDataTable)) { foreach (DataRow wobjDataRow in pobjDataTable.Rows) { YouCom.DTO.AreasComunesDTO tipo_aviso = new YouCom.DTO.AreasComunesDTO(); tipo_aviso.IdAreasComunes = decimal.Parse(wobjDataRow["IdAreaComun"].ToString()); tipo_aviso.NombreAreasComunes = wobjDataRow["nombreAreaComun"].ToString(); tipo_aviso.CantidadHora = int.Parse(wobjDataRow["cantidadHora"].ToString()); tipo_aviso.UsuarioIngreso = wobjDataRow["usuario_ingreso"].ToString(); tipo_aviso.FechaIngreso = wobjDataRow["fecha_ingreso"].ToString(); tipo_aviso.UsuarioModificacion = wobjDataRow["usuario_modificacion"].ToString(); tipo_aviso.FechaModificacion = wobjDataRow["fecha_modificacion"].ToString(); tipo_aviso.Estado = wobjDataRow["estado"].ToString(); IAreasComunes.Add(tipo_aviso); } } return(IAreasComunes); }
public static bool ActivaAreasComunes(YouCom.DTO.AreasComunesDTO theAreasComunesDTO) { bool retorno = false; YouCom.Service.BD.SQLHelper wobjSQLHelper = new YouCom.Service.BD.SQLHelper(); wobjSQLHelper.SetParametro("@usuarioIngreso", SqlDbType.VarChar, 50, theAreasComunesDTO.UsuarioModificacion); wobjSQLHelper.SetParametro("@pIdAreasComunes", SqlDbType.VarChar, 20, theAreasComunesDTO.IdAreasComunes); try { //==================================================================================== switch (wobjSQLHelper.EjecutarNQ("Activa_AreaComun", "YouCom")) { case 0: throw new Exception("No se pudo grabar."); case -1: throw new Exception("Hubo un error."); case -2: throw new Exception("Hubo un error."); } //==================================================================================== retorno = true; } catch (Exception eobjException) { throw eobjException; } return(retorno); }
public static bool ValidaEliminacionAreasComunes(YouCom.DTO.AreasComunesDTO theAreasComunesDTO) { DataTable pobjDataTable = new DataTable(); bool retorno = false; if (YouCom.DAL.AreasComunesDAL.ValidaEliminacionAreasComunes(theAreasComunesDTO, ref pobjDataTable)) { foreach (DataRow wobjDataRow in pobjDataTable.Rows) { retorno = true; } } return(retorno); }
public static bool Update(YouCom.DTO.AreasComunesDTO myAreasComunesDTO) { bool retorno = false; YouCom.Service.BD.SQLHelper wobjSQLHelper = new YouCom.Service.BD.SQLHelper(); try { //Seteo Parámetros. //==================================================================================== wobjSQLHelper.SetParametro("@pIdAreasComunes", SqlDbType.Decimal, -1, myAreasComunesDTO.IdAreasComunes); wobjSQLHelper.SetParametro("@pNombreAreasComunes", SqlDbType.VarChar, 200, myAreasComunesDTO.NombreAreasComunes); wobjSQLHelper.SetParametro("@pCantidadHora", SqlDbType.Int, -1, myAreasComunesDTO.CantidadHora); wobjSQLHelper.SetParametro("@pUsuarioModificacion", SqlDbType.VarChar, 20, myAreasComunesDTO.UsuarioModificacion); wobjSQLHelper.SetParametro("@pIdCondominio", SqlDbType.Decimal, -1, myAreasComunesDTO.TheCondominioDTO.IdCondominio); wobjSQLHelper.SetParametro("@pIdComunidad", SqlDbType.Decimal, -1, myAreasComunesDTO.TheComunidadDTO.IdComunidad); //==================================================================================== //Ejecuto SP. //==================================================================================== switch (wobjSQLHelper.EjecutarNQ("UPD_AreaComun", "YouCom")) { case 0: throw new Exception("No se pudo grabar."); case -1: throw new Exception("Hubo un error."); case -2: throw new Exception("Hubo un error."); } //==================================================================================== retorno = true; } #region Catch catch (Exception eobjException) { throw eobjException; } #endregion return(retorno); }
public static IList <YouCom.DTO.AreasComunesDTO> getListadoAreasComunes() { IList <YouCom.DTO.AreasComunesDTO> IAreasComunes = new List <YouCom.DTO.AreasComunesDTO>(); DataTable pobjDataTable = new DataTable(); if (YouCom.DAL.AreasComunesDAL.getListadoAreasComunes(ref pobjDataTable)) { foreach (DataRow wobjDataRow in pobjDataTable.Rows) { YouCom.DTO.AreasComunesDTO areas_comunes = new YouCom.DTO.AreasComunesDTO(); areas_comunes.IdAreasComunes = decimal.Parse(wobjDataRow["IdAreaComun"].ToString()); areas_comunes.NombreAreasComunes = wobjDataRow["nombreAreaComun"].ToString(); areas_comunes.CantidadHora = int.Parse(wobjDataRow["cantidadHora"].ToString()); areas_comunes.UsuarioIngreso = wobjDataRow["usuario_ingreso"].ToString(); areas_comunes.FechaIngreso = wobjDataRow["fecha_ingreso"].ToString(); areas_comunes.UsuarioModificacion = wobjDataRow["usuario_modificacion"].ToString(); areas_comunes.FechaModificacion = wobjDataRow["fecha_modificacion"].ToString(); areas_comunes.Estado = wobjDataRow["estado"].ToString(); YouCom.DTO.Seguridad.CondominioDTO myCondominio = new YouCom.DTO.Seguridad.CondominioDTO(); myCondominio.IdCondominio = decimal.Parse(wobjDataRow["idCondominio"].ToString()); areas_comunes.TheCondominioDTO = myCondominio; YouCom.DTO.Seguridad.ComunidadDTO myComunidadDTO = new YouCom.DTO.Seguridad.ComunidadDTO(); myComunidadDTO.IdComunidad = decimal.Parse(wobjDataRow["idComunidad"].ToString()); areas_comunes.TheComunidadDTO = myComunidadDTO; IAreasComunes.Add(areas_comunes); } } return(IAreasComunes); }