<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://online.spectraqest.com/index.php?action=history&amp;feed=atom&amp;title=QESTNET_Internal%3AQESTNET_Projects_Quick_Reference_Guide</id>
	<title>QESTNET Internal:QESTNET Projects Quick Reference Guide - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://online.spectraqest.com/index.php?action=history&amp;feed=atom&amp;title=QESTNET_Internal%3AQESTNET_Projects_Quick_Reference_Guide"/>
	<link rel="alternate" type="text/html" href="http://online.spectraqest.com/index.php?title=QESTNET_Internal:QESTNET_Projects_Quick_Reference_Guide&amp;action=history"/>
	<updated>2026-04-07T12:58:17Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>http://online.spectraqest.com/index.php?title=QESTNET_Internal:QESTNET_Projects_Quick_Reference_Guide&amp;diff=28954&amp;oldid=prev</id>
		<title>Benny.thomas at 05:42, 13 July 2015</title>
		<link rel="alternate" type="text/html" href="http://online.spectraqest.com/index.php?title=QESTNET_Internal:QESTNET_Projects_Quick_Reference_Guide&amp;diff=28954&amp;oldid=prev"/>
		<updated>2015-07-13T05:42:00Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;===Projects===&lt;br /&gt;
====QESTNET.Service====&lt;br /&gt;
=====QEST.Core=====&lt;br /&gt;
General helper and extension classes for .NET, that are not specific to QESTLab functionality.&lt;br /&gt;
=====QEST.Core.Units=====&lt;br /&gt;
Defines all the units. If you need a unit which does not exist this is where you add it (e.g., you may need to add Becquerel for radioactivity).&lt;br /&gt;
=====QESTNET=====&lt;br /&gt;
The QESTNET service. The app.config file in this project is where the majority of configuration properties are set. If you need to edit any configuration for qestnet it is probably in here. Also this project has pre/post build events to stop/start the qestnet service which can be handy.&lt;br /&gt;
=====QESTNET.Configuration=====&lt;br /&gt;
Defines app.config configuration properties.&lt;br /&gt;
=====QESTNET.Sessions=====&lt;br /&gt;
The base session service code. The LabSession, IntegrationSession and DataBackboneSession all extend this class.&lt;br /&gt;
----&lt;br /&gt;
====QESTNET.Sessions.Lab====&lt;br /&gt;
=====QEST.QMapper=====&lt;br /&gt;
A mapping engine, customised predominantly to be used to map QESTLab.Data to QESTLab.Entities.&lt;br /&gt;
=====QESTLab.Containers=====&lt;br /&gt;
Containers hold data and processes hold actions. These are the predominant form of communication between the LabSession and the QESTField web server.&lt;br /&gt;
=====QESTLab.Core=====&lt;br /&gt;
General helper and extension classes that are specific to qestlab functionality.&lt;br /&gt;
=====QESTLab.Data=====&lt;br /&gt;
Entity Framework (EF) implementation for the QESTLab database. EF is an object-relational mapper (ORM). It loads and saves data to and from the QESTLab database.&lt;br /&gt;
=====QESTLab.Data.Rules=====&lt;br /&gt;
Low level QESTLab rules run on the data before it is loaded/saved from/to the database.  Things like counters, status flags, defaults, audit trails.&lt;br /&gt;
=====QESTLab.Entities=====&lt;br /&gt;
Data objects which better match what we would like the data in the database to resemble.&lt;br /&gt;
=====QESTLab.Entities.Rules=====&lt;br /&gt;
The &amp;quot;Business Rules&amp;quot; to run on entities. Mostly these rules are related to specific test entities and include all the calculations for the given test. The rules are run often and should be designed with performance in mind.&lt;br /&gt;
=====QESTLab.Models=====&lt;br /&gt;
Serializable data objects which represent data to be sent to a client (e.g., QESTField).&lt;br /&gt;
=====QESTLab.Models.Rules=====&lt;br /&gt;
The &amp;quot;Business Rules&amp;quot; to run on models.  This has been removed in 4.1 as it is more appropriate that this logic is avoided or handled by the mapping between entities and models.&lt;br /&gt;
=====QESTLab.Repository=====&lt;br /&gt;
An ORM of QESTLab.Entities which allows loading and saving to the QESTLab database using QESTLab.Entities objects. Includes the mapping of QESTLab.Data and QESTLab.Entities. The QestEntityContext class in this project is how all higher level projects such as Entities.Rules and Workflow access the database. It is the equivalent of the QLO.Connection in QESTLab.&lt;br /&gt;
=====QESTLab.Workflow=====&lt;br /&gt;
The presentation layer to be sent to a client (e.g., QESTField). This includes everything related to creating workflows, containers, processes and mapping models and entities.&lt;br /&gt;
=====QESTNET.Sessions.Lab=====&lt;br /&gt;
The lab session service contract and implementation.&lt;br /&gt;
=====QESTNET.Tester=====&lt;br /&gt;
A simple console application which you can use to call any other parts of QESTNET for testing purposes. Can be run by selecting “Set as StartUp project” and then pressing Start Debugging (F5).&lt;br /&gt;
----&lt;br /&gt;
====QESTNET.Sessions.Integration====&lt;br /&gt;
=====QESTNET.Integration=====&lt;br /&gt;
Base code for standard integrators which access the QESTLab database.&lt;br /&gt;
=====QESTNET.Integration.Console=====&lt;br /&gt;
A windows application (GUI) for configuring and running integrators for the IntegrationSession. Can be run by selecting “Set as StartUp project” and then pressing Start Debugging (F5).&lt;br /&gt;
=====QESTNET.Sessions.Integration=====&lt;br /&gt;
The integration session service contract and implementation.&lt;br /&gt;
----&lt;br /&gt;
====QESTNET.Integration.Portal====&lt;br /&gt;
=====QESTNET.Integration.Portal=====&lt;br /&gt;
Import/Export integrators for Hive. These can be called using the IntegrationSession. They are currently used only for the Fugro system and are called by Hive, QESTLab and the QESTNET LabSession.&lt;br /&gt;
----&lt;br /&gt;
====QESTNET.Custom====&lt;br /&gt;
=====QESTNET.Custom.*=====&lt;br /&gt;
Customer specific extensions. Mostly integrations to specific configurations of third party software.&lt;br /&gt;
=====QESTNET.Custom.Fugro.DataBackbone=====&lt;br /&gt;
The databackbone session service contract. Used for the integration of Hive, QESTLab and QESTNET with Fugro’s databackbone product.&lt;br /&gt;
----&lt;br /&gt;
====QESTField====&lt;br /&gt;
=====QESTField=====&lt;br /&gt;
A website client for the QESTNET LabSession service.&lt;br /&gt;
*Service References - A service reference of the QESTNET LabSession.&lt;br /&gt;
*Content - The css and any images for the website.&lt;br /&gt;
*Controllers - Determines what happens for any given action on a page&lt;br /&gt;
*Helpers - Functions used throughout the rest of the code.&lt;br /&gt;
*Models - Any extra models.  The majority of models used are QESTLab.Models accessed via the service reference.&lt;br /&gt;
*Scripts - A bunch of javascript which in general is used anytime QESTField does something cool.&lt;br /&gt;
*Views - Bits of html which are added together to create web pages. Majority of it has one to one mappings with QESTLab.Models.&lt;br /&gt;
=====QESTField.DynamicForms=====&lt;br /&gt;
A swathe of code used to dynamically create html for the DisplayElementView model. This model is generated from Kitsune data. In general QESTField is moving away from this dynamically created html to the specific html found in the Views folder for individual QESTLab.Models.&lt;/div&gt;</summary>
		<author><name>Benny.thomas</name></author>
	</entry>
</feed>