Int64 IMDSupplierItemCategoryDataAccess.Add(MDSupplierItemCategoryEntity mDSupplierItemCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
        {
            try
            {
                long retValues = -99;

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

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

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

                return(retValues);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        private MDSupplierItemCategoryEntity BuildMDSupplierItemCategoryEntity()
        {
            MDSupplierItemCategoryEntity mDSupplierItemCategoryEntity = CurrentMDSupplierItemCategoryEntity;

            mDSupplierItemCategoryEntity.Name      = txtName.Text.Trim();
            mDSupplierItemCategoryEntity.IsRemoved = chkIsRemoved.Checked;


            return(mDSupplierItemCategoryEntity);
        }
        private void SaveMDSupplierItemCategoryEntity()
        {
            if (IsValid)
            {
                try
                {
                    MDSupplierItemCategoryEntity mDSupplierItemCategoryEntity = BuildMDSupplierItemCategoryEntity();

                    Int64 result = -1;

                    if (mDSupplierItemCategoryEntity.IsNew)
                    {
                        result = FCCMDSupplierItemCategory.GetFacadeCreate().Add(mDSupplierItemCategoryEntity, DatabaseOperationType.Add, TransactionRequired.No);
                    }
                    else
                    {
                        String filterExpression = SqlExpressionBuilder.PrepareFilterExpression(MDSupplierItemCategoryEntity.FLD_NAME_SupplierItemCategoryID, mDSupplierItemCategoryEntity.SupplierItemCategoryID.ToString(), SQLMatchType.Equal);
                        result = FCCMDSupplierItemCategory.GetFacadeCreate().Update(mDSupplierItemCategoryEntity, filterExpression, DatabaseOperationType.Update, TransactionRequired.No);
                    }

                    if (result > 0)
                    {
                        _SupplierItemCategoryID       = 0;
                        _MDSupplierItemCategoryEntity = new MDSupplierItemCategoryEntity();
                        PrepareInitialView();
                        BindMDSupplierItemCategoryList();

                        if (mDSupplierItemCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Vendor Item Category Information has been added successfully.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Vendor Item Category Information has been updated successfully.", false);
                        }
                    }
                    else
                    {
                        if (mDSupplierItemCategoryEntity.IsNew)
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to add Vendor Item Category Information.", false);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to update Vendor Item Category Information.", false);
                        }
                    }
                }
                catch (Exception ex)
                {
                    MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                }
            }
        }
        private Int64 UpdateTran(MDSupplierItemCategoryEntity mDSupplierItemCategoryEntity, String filterExpression, DatabaseOperationType option)
        {
            long         returnCode = -99;
            const string SP         = "dbo.MDSupplierItemCategory_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, "@SupplierItemCategoryID", DbType.Int64, mDSupplierItemCategoryEntity.SupplierItemCategoryID);
                db.AddInParameter(cmd, "@Name", DbType.String, mDSupplierItemCategoryEntity.Name);
                db.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDSupplierItemCategoryEntity.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 lvMDSupplierItemCategory_ItemCommand(object sender, ListViewCommandEventArgs e)
        {
            Int64 SupplierItemCategoryID;

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

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

                    PrepareEditView();

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

                        String fe = SqlExpressionBuilder.PrepareFilterExpression(MDSupplierItemCategoryEntity.FLD_NAME_SupplierItemCategoryID, SupplierItemCategoryID.ToString(), SQLMatchType.Equal);

                        MDSupplierItemCategoryEntity mDSupplierItemCategoryEntity = new MDSupplierItemCategoryEntity();


                        result = FCCMDSupplierItemCategory.GetFacadeCreate().Delete(mDSupplierItemCategoryEntity, fe, DatabaseOperationType.Delete, TransactionRequired.No);

                        if (result == 0)
                        {
                            _SupplierItemCategoryID       = 0;
                            _MDSupplierItemCategoryEntity = new MDSupplierItemCategoryEntity();
                            PrepareInitialView();
                            BindMDSupplierItemCategoryList();

                            MiscUtil.ShowMessage(lblMessage, "Vendor Item Category has been successfully deleted.", true);
                        }
                        else
                        {
                            MiscUtil.ShowMessage(lblMessage, "Failed to delete Vendor Item Category.", true);
                        }
                    }
                    catch (Exception ex)
                    {
                        MiscUtil.ShowMessage(lblMessage, ex.Message, true);
                    }
                }
            }
        }
        private void PrepareEditView()
        {
            MDSupplierItemCategoryEntity mDSupplierItemCategoryEntity = CurrentMDSupplierItemCategoryEntity;


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

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

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

                Database.AddInParameter(cmd, "@SupplierItemCategoryID", DbType.Int64, mDSupplierItemCategoryEntity.SupplierItemCategoryID);
                Database.AddInParameter(cmd, "@Name", DbType.String, mDSupplierItemCategoryEntity.Name);
                Database.AddInParameter(cmd, "@IsRemoved", DbType.Boolean, mDSupplierItemCategoryEntity.IsRemoved);

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

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

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

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

            return(returnCode);
        }
 protected void btnAddNew_Click(object sender, EventArgs e)
 {
     _SupplierItemCategoryID       = 0;
     _MDSupplierItemCategoryEntity = new MDSupplierItemCategoryEntity();
     PrepareInitialView();
 }
 Int64 IMDSupplierItemCategoryFacade.Delete(MDSupplierItemCategoryEntity mDSupplierItemCategoryEntity, String filterExpression, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDSupplierItemCategoryDataAccess().Delete(mDSupplierItemCategoryEntity, filterExpression, option, reqTran));
 }
 Int64 IMDSupplierItemCategoryFacade.Add(MDSupplierItemCategoryEntity mDSupplierItemCategoryEntity, DatabaseOperationType option, TransactionRequired reqTran)
 {
     return(DataAccessFactory.CreateMDSupplierItemCategoryDataAccess().Add(mDSupplierItemCategoryEntity, option, reqTran));
 }