Exemplo n.º 1
0
        public void Update(HPS.BLL.PermissionBLL.BLLPermission_T businessObject, HPS.BLL.PermissionBLL.BLLPermission_TKeys businessObjectKey)
        {
            try
            {
                if (businessObject.PermissionID_bint == businessObjectKey.PermissionID_bint)
                {
                    if (businessObject.IsValid(Hepsa.Core.Validation.ValidationExceptionType.Except, "UniquePermissionID_bint") == false)
                    {
                        throw new Hepsa.Core.Validation.InvalidBusinessObjectException(businessObject.BrokenRulesList().ToString());
                    }
                }
                else
                {
                    if (businessObject.IsValid() == false)
                    {
                        throw new Hepsa.Core.Validation.InvalidBusinessObjectException(businessObject.BrokenRulesList().ToString());
                    }
                }

                _dataObject.Update(businessObject, businessObjectKey);
            }
            catch (System.Exception ex)
            {
                throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this);
            }
        }
Exemplo n.º 2
0
        public HPS.BLL.PermissionBLL.BLLPermission_T SelectByPrimaryKey(HPS.BLL.PermissionBLL.BLLPermission_TKeys businessObjectKey)
        {
            bool ControlConnection = !(this.ConnectionState == System.Data.ConnectionState.Open);

            this.Command.CommandText = "[sp_Permission_T_SelectByPrimaryKey]";
            this.Command.CommandType = CommandType.StoredProcedure;

            try
            {
                this.Command.Parameters.Clear();

                SqlParameter PermissionID_bint = new SqlParameter();
                PermissionID_bint.ParameterName = "@PermissionID_bint";
                PermissionID_bint.SqlDbType     = SqlDbType.BigInt;
                PermissionID_bint.Direction     = ParameterDirection.Input;
                PermissionID_bint.IsNullable    = false;
                PermissionID_bint.Value         = businessObjectKey.PermissionID_bint;
                this.Command.Parameters.Add(PermissionID_bint);



                if (ControlConnection)
                {
                    this.BeginTransaction();
                }

                IDataReader dataReader = this.Command.ExecuteReader();
                HPS.BLL.PermissionBLL.BLLPermission_T businessObject = new HPS.BLL.PermissionBLL.BLLPermission_T();
                if (dataReader.Read())
                {
                    PopulateBusinessObjectFromReader(businessObject, dataReader);
                }
                else
                {
                    businessObject = null;
                }

                if (dataReader.IsClosed == false)
                {
                    dataReader.Close();
                }


                if (ControlConnection)
                {
                    this.Commit();
                }
                return(businessObject);
            }
            catch (System.Exception ex)
            {
                if (ControlConnection)
                {
                    this.RollBack();
                }
                throw ex;
            }
        }
Exemplo n.º 3
0
        public List <HPS.BLL.PermissionBLL.BLLPermission_T> PopulateObjectsFromReader(IDataReader dataReader)
        {
            List <HPS.BLL.PermissionBLL.BLLPermission_T> list = new List <HPS.BLL.PermissionBLL.BLLPermission_T>();

            while (dataReader.Read())
            {
                HPS.BLL.PermissionBLL.BLLPermission_T businessObject = new HPS.BLL.PermissionBLL.BLLPermission_T();
                PopulateBusinessObjectFromReader(businessObject, dataReader);
                list.Add(businessObject);
            }
            return(list);
        }
Exemplo n.º 4
0
        public void PopulateBusinessObjectFromReader(HPS.BLL.PermissionBLL.BLLPermission_T businessObject, IDataReader dataReader)
        {
            businessObject.PermissionID_bint     = dataReader.GetInt64(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.PermissionID_bint.ToString()));
            businessObject.Permission_nvc        = dataReader.GetString(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.Permission_nvc.ToString()));
            businessObject.PermissionGroupID_int = dataReader.GetInt32(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.PermissionGroupID_int.ToString()));
            if (dataReader.IsDBNull(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.FormName_nvc.ToString())) == false)
            {
                businessObject.FormName_nvc = dataReader.GetString(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.FormName_nvc.ToString()));
            }
            else
            {
                businessObject.FormName_nvc = String.Empty;
            }

            if (dataReader.IsDBNull(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.ControlName_nvc.ToString())) == false)
            {
                businessObject.ControlName_nvc = dataReader.GetString(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.ControlName_nvc.ToString()));
            }
            else
            {
                businessObject.ControlName_nvc = String.Empty;
            }

            if (dataReader.IsDBNull(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.PropertyName_nvc.ToString())) == false)
            {
                businessObject.PropertyName_nvc = dataReader.GetString(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.PropertyName_nvc.ToString()));
            }
            else
            {
                businessObject.PropertyName_nvc = String.Empty;
            }

            if (dataReader.IsDBNull(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.Value_nvc.ToString())) == false)
            {
                businessObject.Value_nvc = dataReader.GetString(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.Value_nvc.ToString()));
            }
            else
            {
                businessObject.Value_nvc = String.Empty;
            }

            if (dataReader.IsDBNull(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.ColumnName_nvc.ToString())) == false)
            {
                businessObject.ColumnName_nvc = dataReader.GetString(dataReader.GetOrdinal(HPS.BLL.PermissionBLL.BLLPermission_T.Permission_TField.ColumnName_nvc.ToString()));
            }
            else
            {
                businessObject.ColumnName_nvc = String.Empty;
            }
        }
Exemplo n.º 5
0
        public void Insert(HPS.BLL.PermissionBLL.BLLPermission_T businessObject)
        {
            try
            {
                if (businessObject.IsValid() == false)
                {
                    throw new Hepsa.Core.Validation.InvalidBusinessObjectException(businessObject.BrokenRulesList().ToString());
                }

                _dataObject.Insert(businessObject);
            }
            catch (System.Exception ex)
            {
                throw Hepsa.Core.Exception.HandleException.ChangeExceptionLanguage(ex, this);
            }
        }
Exemplo n.º 6
0
        public void Insert(HPS.BLL.PermissionBLL.BLLPermission_T businessObject)
        {
            bool ControlConnection = !(this.ConnectionState == System.Data.ConnectionState.Open);

            this.Command.CommandText = "[sp_Permission_T_Add]";
            this.Command.CommandType = CommandType.StoredProcedure;

            try
            {
                this.Command.Parameters.Clear();

                SqlParameter PermissionID_bint = new SqlParameter();
                PermissionID_bint.ParameterName = "@PermissionID_bint";
                PermissionID_bint.SqlDbType     = SqlDbType.BigInt;
                PermissionID_bint.Direction     = ParameterDirection.Input;
                PermissionID_bint.IsNullable    = false;
                PermissionID_bint.Value         = businessObject.PermissionID_bint;
                this.Command.Parameters.Add(PermissionID_bint);

                SqlParameter Permission_nvc = new SqlParameter();
                Permission_nvc.ParameterName = "@Permission_nvc";
                Permission_nvc.SqlDbType     = SqlDbType.NVarChar;
                Permission_nvc.Direction     = ParameterDirection.Input;
                Permission_nvc.IsNullable    = false;
                Permission_nvc.Value         = businessObject.Permission_nvc;
                this.Command.Parameters.Add(Permission_nvc);

                SqlParameter PermissionGroupID_int = new SqlParameter();
                PermissionGroupID_int.ParameterName = "@PermissionGroupID_int";
                PermissionGroupID_int.SqlDbType     = SqlDbType.Int;
                PermissionGroupID_int.Direction     = ParameterDirection.Input;
                PermissionGroupID_int.IsNullable    = false;
                PermissionGroupID_int.Value         = businessObject.PermissionGroupID_int;
                this.Command.Parameters.Add(PermissionGroupID_int);

                SqlParameter FormName_nvc = new SqlParameter();
                FormName_nvc.ParameterName = "@FormName_nvc";
                FormName_nvc.SqlDbType     = SqlDbType.NVarChar;
                FormName_nvc.Direction     = ParameterDirection.Input;
                FormName_nvc.IsNullable    = true;
                if (String.IsNullOrEmpty(businessObject.FormName_nvc))
                {
                    FormName_nvc.Value = DBNull.Value;
                }
                else
                {
                    FormName_nvc.Value = businessObject.FormName_nvc;
                }
                this.Command.Parameters.Add(FormName_nvc);

                SqlParameter ControlName_nvc = new SqlParameter();
                ControlName_nvc.ParameterName = "@ControlName_nvc";
                ControlName_nvc.SqlDbType     = SqlDbType.NVarChar;
                ControlName_nvc.Direction     = ParameterDirection.Input;
                ControlName_nvc.IsNullable    = true;
                if (String.IsNullOrEmpty(businessObject.ControlName_nvc))
                {
                    ControlName_nvc.Value = DBNull.Value;
                }
                else
                {
                    ControlName_nvc.Value = businessObject.ControlName_nvc;
                }
                this.Command.Parameters.Add(ControlName_nvc);

                SqlParameter PropertyName_nvc = new SqlParameter();
                PropertyName_nvc.ParameterName = "@PropertyName_nvc";
                PropertyName_nvc.SqlDbType     = SqlDbType.NVarChar;
                PropertyName_nvc.Direction     = ParameterDirection.Input;
                PropertyName_nvc.IsNullable    = true;
                if (String.IsNullOrEmpty(businessObject.PropertyName_nvc))
                {
                    PropertyName_nvc.Value = DBNull.Value;
                }
                else
                {
                    PropertyName_nvc.Value = businessObject.PropertyName_nvc;
                }
                this.Command.Parameters.Add(PropertyName_nvc);

                SqlParameter Value_nvc = new SqlParameter();
                Value_nvc.ParameterName = "@Value_nvc";
                Value_nvc.SqlDbType     = SqlDbType.NVarChar;
                Value_nvc.Direction     = ParameterDirection.Input;
                Value_nvc.IsNullable    = true;
                if (String.IsNullOrEmpty(businessObject.Value_nvc))
                {
                    Value_nvc.Value = DBNull.Value;
                }
                else
                {
                    Value_nvc.Value = businessObject.Value_nvc;
                }
                this.Command.Parameters.Add(Value_nvc);

                SqlParameter ColumnName_nvc = new SqlParameter();
                ColumnName_nvc.ParameterName = "@ColumnName_nvc";
                ColumnName_nvc.SqlDbType     = SqlDbType.NVarChar;
                ColumnName_nvc.Direction     = ParameterDirection.Input;
                ColumnName_nvc.IsNullable    = true;
                if (String.IsNullOrEmpty(businessObject.ColumnName_nvc))
                {
                    ColumnName_nvc.Value = DBNull.Value;
                }
                else
                {
                    ColumnName_nvc.Value = businessObject.ColumnName_nvc;
                }
                this.Command.Parameters.Add(ColumnName_nvc);



                if (ControlConnection)
                {
                    this.BeginTransaction();
                }

                this.Command.ExecuteNonQuery();


                if (ControlConnection)
                {
                    this.Commit();
                }
            }
            catch (System.Exception ex)
            {
                if (ControlConnection)
                {
                    this.RollBack();
                }
                throw ex;
            }
        }