Пример #1
0
        Int64 IHREmployeeSalarySessionDeducationInfoDataAccess.Add(HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

                switch (reqTran)
                {
                case TransactionRequired.No:
                {
                    retValues = Add(hREmployeeSalarySessionDeducationInfoEntity, option);
                    break;
                }

                case TransactionRequired.Yes:
                {
                    retValues = AddTran(hREmployeeSalarySessionDeducationInfoEntity, option);
                    break;
                }

                default:
                {
                    retValues = -99;
                    break;
                }
                }

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private HREmployeeSalarySessionDeducationInfoEntity BuildHREmployeeSalarySessionDeducationInfoEntity()
        {
            HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity = CurrentHREmployeeSalarySessionDeducationInfoEntity;

            if (ddlSalarySessionID.Items.Count > 0)
            {
                if (ddlSalarySessionID.SelectedValue == "0")
                {
                }
                else
                {
                    hREmployeeSalarySessionDeducationInfoEntity.SalarySessionID = Int64.Parse(ddlSalarySessionID.SelectedValue);
                }
            }

            if (!txtDeductionAmount.Text.Trim().IsNullOrEmpty())
            {
                hREmployeeSalarySessionDeducationInfoEntity.DeductionAmount = Decimal.Parse(txtDeductionAmount.Text.Trim());
            }
            else
            {
                hREmployeeSalarySessionDeducationInfoEntity.DeductionAmount = null;
            }

            hREmployeeSalarySessionDeducationInfoEntity.Note = txtNote.Text.Trim();

            return(hREmployeeSalarySessionDeducationInfoEntity);
        }
        private void SaveHREmployeeSalarySessionDeducationInfoEntity()
        {
            if (IsValid)
            {
                try
                {
                    HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity = BuildHREmployeeSalarySessionDeducationInfoEntity();

                    Int64 result = -1;

                    if (hREmployeeSalarySessionDeducationInfoEntity.IsNew)
                    {
                        result = FCCHREmployeeSalarySessionDeducationInfo.GetFacadeCreate().Add(hREmployeeSalarySessionDeducationInfoEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(HREmployeeSalarySessionDeducationInfoEntity.FLD_NAME_EmployeeSalarySessionDeducationInfoID, hREmployeeSalarySessionDeducationInfoEntity.EmployeeSalarySessionDeducationInfoID.ToString(), SQLMatchType.Equal);
                        result = FCCHREmployeeSalarySessionDeducationInfo.GetFacadeCreate().Update(hREmployeeSalarySessionDeducationInfoEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _EmployeeSalarySessionDeducationInfoID       = 0;
                        _HREmployeeSalarySessionDeducationInfoEntity = new HREmployeeSalarySessionDeducationInfoEntity();
                        PrepareInitialView();
                        BindHREmployeeSalarySessionDeducationInfoList();

                        if (hREmployeeSalarySessionDeducationInfoEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Employee Salary Session Deducation Info Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Employee Salary Session Deducation Info Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (hREmployeeSalarySessionDeducationInfoEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Employee Salary Session Deducation Info Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Employee Salary Session Deducation Info Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
Пример #4
0
        private Int64 UpdateTran(HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.HREmployeeSalarySessionDeducationInfo_SET";

            Database db = DatabaseFactory.CreateDatabase();

            using (DbCommand cmd = db.GetStoredProcCommand(SP))
            {
                AddOptionParameter(cmd, option, db);
                AddOutputParameter(cmd, db);
                AddFilterExpressionParameter(cmd, filterExpression, db);

                db.AddInParameter(cmd, "@EmployeeSalarySessionDeducationInfoID", DbType.Int64, hREmployeeSalarySessionDeducationInfoEntity.EmployeeSalarySessionDeducationInfoID);
                db.AddInParameter(cmd, "@SalarySessionID", DbType.Int64, hREmployeeSalarySessionDeducationInfoEntity.SalarySessionID);
                db.AddInParameter(cmd, "@DeductionAmount", DbType.Decimal, hREmployeeSalarySessionDeducationInfoEntity.DeductionAmount);
                db.AddInParameter(cmd, "@Note", DbType.String, hREmployeeSalarySessionDeducationInfoEntity.Note);

                DbConnection connection = db.CreateConnection();
                connection.Open();
                DbTransaction transaction = connection.BeginTransaction();

                try
                {
                    using (IDataReader reader = db.ExecuteReader(cmd, transaction))
                    {
                        returnCode = GetReturnCodeFromParameter(cmd);
                    }

                    if (returnCode > 0)
                    {
                        transaction.Commit();
                    }
                    else
                    {
                        throw new ArgumentException("Error Code." + returnCode.ToString());
                    }
                }
                catch (Exception ex)
                {
                    transaction.Rollback();
                    throw ex;
                }
                finally
                {
                    transaction.Dispose();
                    connection.Close();
                    connection = null;
                }
            }

            return(returnCode);
        }
        protected void lvHREmployeeSalarySessionDeducationInfo_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 EmployeeSalarySessionDeducationInfoID;

            Int64.TryParse(e.CommandArgument.ToString(), out EmployeeSalarySessionDeducationInfoID);

            if (EmployeeSalarySessionDeducationInfoID > 0)
            {
                if (string.Equals(e.CommandName, "EditItem"))
                {
                    _EmployeeSalarySessionDeducationInfoID = EmployeeSalarySessionDeducationInfoID;

                    PrepareEditView();

                    cpeEditor.Collapsed   = false;
                    cpeEditor.ClientState = "false";
                }
                else if (string.Equals(e.CommandName, "DeleteItem"))
                {
                    try
                    {
                        Int64 result = -1;

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(HREmployeeSalarySessionDeducationInfoEntity.FLD_NAME_EmployeeSalarySessionDeducationInfoID, EmployeeSalarySessionDeducationInfoID.ToString(), SQLMatchType.Equal);

                        HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity = new HREmployeeSalarySessionDeducationInfoEntity();


                        result = FCCHREmployeeSalarySessionDeducationInfo.GetFacadeCreate().Delete(hREmployeeSalarySessionDeducationInfoEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _EmployeeSalarySessionDeducationInfoID       = 0;
                            _HREmployeeSalarySessionDeducationInfoEntity = new HREmployeeSalarySessionDeducationInfoEntity();
                            PrepareInitialView();
                            BindHREmployeeSalarySessionDeducationInfoList();

                            MiscUtil.ShowMessage(lblMessage, "Employee Salary Session Deducation Info has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Employee Salary Session Deducation Info.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private void PrepareEditView()
        {
            HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity = CurrentHREmployeeSalarySessionDeducationInfoEntity;


            if (!hREmployeeSalarySessionDeducationInfoEntity.IsNew)
            {
                if (ddlSalarySessionID.Items.Count > 0 && hREmployeeSalarySessionDeducationInfoEntity.SalarySessionID != null)
                {
                    ddlSalarySessionID.SelectedValue = hREmployeeSalarySessionDeducationInfoEntity.SalarySessionID.ToString();
                }

                txtDeductionAmount.Text = hREmployeeSalarySessionDeducationInfoEntity.DeductionAmount.ToString();
                txtNote.Text            = hREmployeeSalarySessionDeducationInfoEntity.Note.ToString();

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
Пример #7
0
        private Int64 Update(HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.HREmployeeSalarySessionDeducationInfo_SET";

            using (DbCommand cmd = Database.GetStoredProcCommand(SP))
            {
                AddOptionParameter(cmd, option);
                AddOutputParameter(cmd);
                AddFilterExpressionParameter(cmd, filterExpression);

                Database.AddInParameter(cmd, "@EmployeeSalarySessionDeducationInfoID", DbType.Int64, hREmployeeSalarySessionDeducationInfoEntity.EmployeeSalarySessionDeducationInfoID);
                Database.AddInParameter(cmd, "@SalarySessionID", DbType.Int64, hREmployeeSalarySessionDeducationInfoEntity.SalarySessionID);
                Database.AddInParameter(cmd, "@DeductionAmount", DbType.Decimal, hREmployeeSalarySessionDeducationInfoEntity.DeductionAmount);
                Database.AddInParameter(cmd, "@Note", DbType.String, hREmployeeSalarySessionDeducationInfoEntity.Note);

                using (IDataReader reader = Database.ExecuteReader(cmd))
                {
                    returnCode = GetReturnCodeFromParameter(cmd);

                    switch (returnCode)
                    {
                    case SqlConstants.DB_STATUS_CODE_DATAALREADYEXIST:
                    {
                        throw new ArgumentException("HREmployeeSalarySessionDeducationInfoEntity already exists. Please specify another HREmployeeSalarySessionDeducationInfoEntity.");
                    }

                    case SqlConstants.DB_STATUS_CODE_DATAUPDATEDFROMOTHERSESSION:
                    {
                        throw new ArgumentException("HREmployeeSalarySessionDeducationInfoEntity data already updated from different session.");
                    }

                    case SqlConstants.DB_STATUS_CODE_FAIL_OPERATION:
                    {
                        throw new ArgumentException("HREmployeeSalarySessionDeducationInfoEntity already exists. Please specify another HREmployeeSalarySessionDeducationInfoEntity.");
                    }
                    }
                }
            }

            return(returnCode);
        }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _EmployeeSalarySessionDeducationInfoID       = 0;
     _HREmployeeSalarySessionDeducationInfoEntity = new HREmployeeSalarySessionDeducationInfoEntity();
     PrepareInitialView();
 }
 Int64 IHREmployeeSalarySessionDeducationInfoFacade.Delete(HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateHREmployeeSalarySessionDeducationInfoDataAccess().Delete(hREmployeeSalarySessionDeducationInfoEntity, filterExpression, option, reqTran));
 }
 Int64 IHREmployeeSalarySessionDeducationInfoFacade.Add(HREmployeeSalarySessionDeducationInfoEntity hREmployeeSalarySessionDeducationInfoEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateHREmployeeSalarySessionDeducationInfoDataAccess().Add(hREmployeeSalarySessionDeducationInfoEntity, option, reqTran));
 }