Int64 IMDSurveySourceInformationDataAccess.Add(MDSurveySourceInformationEntity mDSurveySourceInformationEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private void SaveMDSurveySourceInformationEntity()
        {
            if (IsValid)
            {
                try
                {
                    MDSurveySourceInformationEntity mDSurveySourceInformationEntity = BuildMDSurveySourceInformationEntity();

                    Int64 result = -1;

                    if (mDSurveySourceInformationEntity.IsNew)
                    {
                        result = FCCMDSurveySourceInformation.GetFacadeCreate().Add(mDSurveySourceInformationEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDSurveySourceInformationEntity.FLD_NAME_SurveySourceInformationID, mDSurveySourceInformationEntity.SurveySourceInformationID.ToString(), SQLMatchType.Equal);
                        result = FCCMDSurveySourceInformation.GetFacadeCreate().Update(mDSurveySourceInformationEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _SurveySourceInformationID       = 0;
                        _MDSurveySourceInformationEntity = new MDSurveySourceInformationEntity();
                        PrepareInitialView();
                        BindMDSurveySourceInformationList();

                        if (mDSurveySourceInformationEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Survey Source Information Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Survey Source Information Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (mDSurveySourceInformationEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Survey Source Information Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Survey Source Information Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        private MDSurveySourceInformationEntity BuildMDSurveySourceInformationEntity()
        {
            MDSurveySourceInformationEntity mDSurveySourceInformationEntity = CurrentMDSurveySourceInformationEntity;

            mDSurveySourceInformationEntity.Name        = txtName.Text.Trim();
            mDSurveySourceInformationEntity.Description = txtDescription.Text.Trim();
            mDSurveySourceInformationEntity.IsRemoved   = chkIsRemoved.Checked;


            return(mDSurveySourceInformationEntity);
        }
        private Int64 UpdateTran(MDSurveySourceInformationEntity mDSurveySourceInformationEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDSurveySourceInformation_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, "@SurveySourceInformationID", DbType.Int64, mDSurveySourceInformationEntity.SurveySourceInformationID);
                db.AddInParameter(cmd, "@Name", DbType.String, mDSurveySourceInformationEntity.Name);
                db.AddInParameter(cmd, "@Description", DbType.String, mDSurveySourceInformationEntity.Description);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDSurveySourceInformationEntity.IsRemoved);

                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 lvMDSurveySourceInformation_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 SurveySourceInformationID;

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(MDSurveySourceInformationEntity.FLD_NAME_SurveySourceInformationID, SurveySourceInformationID.ToString(), SQLMatchType.Equal);

                        MDSurveySourceInformationEntity mDSurveySourceInformationEntity = new MDSurveySourceInformationEntity();


                        result = FCCMDSurveySourceInformation.GetFacadeCreate().Delete(mDSurveySourceInformationEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _SurveySourceInformationID       = 0;
                            _MDSurveySourceInformationEntity = new MDSurveySourceInformationEntity();
                            PrepareInitialView();
                            BindMDSurveySourceInformationList();

                            MiscUtil.ShowMessage(lblMessage, "Survey Source Information has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Survey Source Information.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private void PrepareEditView()
        {
            MDSurveySourceInformationEntity mDSurveySourceInformationEntity = CurrentMDSurveySourceInformationEntity;


            if (!mDSurveySourceInformationEntity.IsNew)
            {
                txtName.Text         = mDSurveySourceInformationEntity.Name.ToString();
                txtDescription.Text  = mDSurveySourceInformationEntity.Description.ToString();
                chkIsRemoved.Checked = mDSurveySourceInformationEntity.IsRemoved;

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
        private Int64 Update(MDSurveySourceInformationEntity mDSurveySourceInformationEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDSurveySourceInformation_SET";

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

                Database.AddInParameter(cmd, "@SurveySourceInformationID", DbType.Int64, mDSurveySourceInformationEntity.SurveySourceInformationID);
                Database.AddInParameter(cmd, "@Name", DbType.String, mDSurveySourceInformationEntity.Name);
                Database.AddInParameter(cmd, "@Description", DbType.String, mDSurveySourceInformationEntity.Description);
                Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDSurveySourceInformationEntity.IsRemoved);

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

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

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

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

            return(returnCode);
        }
 Int64 IMDSurveySourceInformationFacade.Delete(MDSurveySourceInformationEntity mDSurveySourceInformationEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDSurveySourceInformationDataAccess().Delete(mDSurveySourceInformationEntity, filterExpression, option, reqTran));
 }
 Int64 IMDSurveySourceInformationFacade.Add(MDSurveySourceInformationEntity mDSurveySourceInformationEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDSurveySourceInformationDataAccess().Add(mDSurveySourceInformationEntity, option, reqTran));
 }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _SurveySourceInformationID       = 0;
     _MDSurveySourceInformationEntity = new MDSurveySourceInformationEntity();
     PrepareInitialView();
 }