HBM.GeneralManagement.GuestTypeDAO.InsertUpdateDelete C# (CSharp) Method

InsertUpdateDelete() public method

public InsertUpdateDelete ( DataSet ds ) : bool
ds System.Data.DataSet
return bool
        public bool InsertUpdateDelete(DataSet ds)
        {
            Database db = DatabaseFactory.CreateDatabase(Constants.HBMCONNECTIONSTRING);
            DbCommand commandInsert = db.GetStoredProcCommand("usp_GuestTypeInsert");

            db.AddInParameter(commandInsert, "@CompanyId", DbType.Int32, "CompanyId", DataRowVersion.Current);
            db.AddInParameter(commandInsert, "@GuestTypeName", DbType.String, "GuestTypeName", DataRowVersion.Current);
            db.AddInParameter(commandInsert, "@GuestTypeDescription", DbType.String, "GuestTypeDescription", DataRowVersion.Current);
            db.AddInParameter(commandInsert, "@CreatedUser", DbType.Int32, "CreatedUser", DataRowVersion.Current);
            db.AddInParameter(commandInsert, "@StatusId", DbType.Int32, "StatusId", DataRowVersion.Current);

            DbCommand commandUpdate = db.GetStoredProcCommand("usp_GuestTypeUpdate");
            db.AddInParameter(commandUpdate, "@GuestTypeId", DbType.Int32, "GuestTypeId", DataRowVersion.Current);
            db.AddInParameter(commandUpdate, "@GuestTypeName", DbType.String, "GuestTypeName", DataRowVersion.Current);
            db.AddInParameter(commandUpdate, "@GuestTypeDescription", DbType.String, "GuestTypeDescription", DataRowVersion.Current);
            db.AddInParameter(commandUpdate, "@UpdatedUser", DbType.Int32, "UpdatedUser", DataRowVersion.Current);
            db.AddInParameter(commandUpdate, "@StatusId", DbType.Int32, "StatusId", DataRowVersion.Current);

            DbCommand commandDelete = db.GetStoredProcCommand("usp_GuestTypeDelete");
            db.AddInParameter(commandDelete, "@GuestTypeId", DbType.Int32, "GuestTypeId", DataRowVersion.Current);

            db.UpdateDataSet(ds, ds.Tables[0].TableName, commandInsert, commandUpdate, commandDelete, UpdateBehavior.Transactional);

            return true;
        }