Int64 ICRMBuyerChildrenInfoDataAccess.Add(CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private CRMBuyerChildrenInfoEntity BuildCRMBuyerChildrenInfoEntity()
        {
            CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity = CurrentCRMBuyerChildrenInfoEntity;

            cRMBuyerChildrenInfoEntity.BuyerBasicInfoID = CRMBuyerBasicInfoID;
            cRMBuyerChildrenInfoEntity.Name             = txtName.Text.Trim();
            if (txtDOB.Text.Trim().IsNotNullOrEmpty())
            {
                cRMBuyerChildrenInfoEntity.DOB = MiscUtil.ParseToDateTime(txtDOB.Text);
            }
            else
            {
                cRMBuyerChildrenInfoEntity.DOB = null;
            }

            if (ddlGenderID.Items.Count > 0)
            {
                if (ddlGenderID.SelectedValue == "0")
                {
                }
                else
                {
                    cRMBuyerChildrenInfoEntity.GenderID = Int64.Parse(ddlGenderID.SelectedValue);
                }
            }

            cRMBuyerChildrenInfoEntity.EditionalInstituteName = txtEditionalInstituteName.Text.Trim();

            return(cRMBuyerChildrenInfoEntity);
        }
        private Int64 UpdateTran(CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.CRMBuyerChildrenInfo_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, "@BuyerChildrenInfoID", DbType.Int64, cRMBuyerChildrenInfoEntity.BuyerChildrenInfoID);
                db.AddInParameter(cmd, "@BuyerBasicInfoID", DbType.Int64, cRMBuyerChildrenInfoEntity.BuyerBasicInfoID);
                db.AddInParameter(cmd, "@Name", DbType.String, cRMBuyerChildrenInfoEntity.Name);
                db.AddInParameter(cmd, "@DOB", DbType.DateTime, cRMBuyerChildrenInfoEntity.DOB);
                db.AddInParameter(cmd, "@GenderID", DbType.Int64, cRMBuyerChildrenInfoEntity.GenderID);
                db.AddInParameter(cmd, "@EditionalInstituteName", DbType.String, cRMBuyerChildrenInfoEntity.EditionalInstituteName);

                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);
        }
        private void SaveCRMBuyerChildrenInfoEntity()
        {
            if (IsValid)
            {
                try
                {
                    CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity = BuildCRMBuyerChildrenInfoEntity();

                    Int64 result = -1;

                    if (cRMBuyerChildrenInfoEntity.IsNew)
                    {
                        result = FCCCRMBuyerChildrenInfo.GetFacadeCreate().Add(cRMBuyerChildrenInfoEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(CRMBuyerChildrenInfoEntity.FLD_NAME_BuyerChildrenInfoID, cRMBuyerChildrenInfoEntity.BuyerChildrenInfoID.ToString(), SQLMatchType.Equal);
                        result = FCCCRMBuyerChildrenInfo.GetFacadeCreate().Update(cRMBuyerChildrenInfoEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _BuyerChildrenInfoID        = 0;
                        _CRMBuyerChildrenInfoEntity = new CRMBuyerChildrenInfoEntity();
                        PrepareInitialView();
                        BindCRMBuyerChildrenInfoList();

                        if (cRMBuyerChildrenInfoEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Buyer Children Info Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Buyer Children Info Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (cRMBuyerChildrenInfoEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Buyer Children Info Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Buyer Children Info Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        protected void lvCRMBuyerChildrenInfo_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 BuyerChildrenInfoID;

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(CRMBuyerChildrenInfoEntity.FLD_NAME_BuyerChildrenInfoID, BuyerChildrenInfoID.ToString(), SQLMatchType.Equal);

                        CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity = new CRMBuyerChildrenInfoEntity();


                        result = FCCCRMBuyerChildrenInfo.GetFacadeCreate().Delete(cRMBuyerChildrenInfoEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _BuyerChildrenInfoID        = 0;
                            _CRMBuyerChildrenInfoEntity = new CRMBuyerChildrenInfoEntity();
                            PrepareInitialView();
                            BindCRMBuyerChildrenInfoList();

                            MiscUtil.ShowMessage(lblMessage, "Buyer Children Info has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Buyer Children Info.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private Int64 Update(CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.CRMBuyerChildrenInfo_SET";

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

                Database.AddInParameter(cmd, "@BuyerChildrenInfoID", DbType.Int64, cRMBuyerChildrenInfoEntity.BuyerChildrenInfoID);
                Database.AddInParameter(cmd, "@BuyerBasicInfoID", DbType.Int64, cRMBuyerChildrenInfoEntity.BuyerBasicInfoID);
                Database.AddInParameter(cmd, "@Name", DbType.String, cRMBuyerChildrenInfoEntity.Name);
                Database.AddInParameter(cmd, "@DOB", DbType.DateTime, cRMBuyerChildrenInfoEntity.DOB);
                Database.AddInParameter(cmd, "@GenderID", DbType.Int64, cRMBuyerChildrenInfoEntity.GenderID);
                Database.AddInParameter(cmd, "@EditionalInstituteName", DbType.String, cRMBuyerChildrenInfoEntity.EditionalInstituteName);

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

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

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

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

            return(returnCode);
        }
        private void PrepareEditView()
        {
            CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity = CurrentCRMBuyerChildrenInfoEntity;


            if (!cRMBuyerChildrenInfoEntity.IsNew)
            {
                txtName.Text = cRMBuyerChildrenInfoEntity.Name.ToString();
                txtDOB.Text  = cRMBuyerChildrenInfoEntity.DOB.ToStringDefault();
                if (ddlGenderID.Items.Count > 0 && cRMBuyerChildrenInfoEntity.GenderID != null)
                {
                    ddlGenderID.SelectedValue = cRMBuyerChildrenInfoEntity.GenderID.ToString();
                }

                txtEditionalInstituteName.Text = cRMBuyerChildrenInfoEntity.EditionalInstituteName.ToString();

                btnSubmit.Text    = "Update";
                btnAddNew.Visible = true;
            }
        }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _BuyerChildrenInfoID        = 0;
     _CRMBuyerChildrenInfoEntity = new CRMBuyerChildrenInfoEntity();
     PrepareInitialView();
 }
 Int64 ICRMBuyerChildrenInfoFacade.Delete(CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateCRMBuyerChildrenInfoDataAccess().Delete(cRMBuyerChildrenInfoEntity, filterExpression, option, reqTran));
 }
 Int64 ICRMBuyerChildrenInfoFacade.Add(CRMBuyerChildrenInfoEntity cRMBuyerChildrenInfoEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateCRMBuyerChildrenInfoDataAccess().Add(cRMBuyerChildrenInfoEntity, option, reqTran));
 }