aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Firmware/Tango.FirmwareUpdateLib/ProgressForm.cpp
blob: 25ac79e3a3f84a938154d0518a09a286b24b73f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stdafx.h"
#include "ProgressForm.h"

using namespace System::Windows::Forms;

namespace Tango
{
	namespace FirmwareUpdateLib
	{

	}
}
an class="nn">Tango.BL.Observables; using Tango.Settings; using System.Linq; using System.Collections.Generic; using Tango.DBObservablesGenerator.CLI; namespace Tango.UnitTesting { [TestClass] [TestCategory("Code Generation")] public class CodeGeneration_TST { [TestMethod] public void Generate_DAL_Observable_Entities() { String tempPath = Helper.GetTempFolderPath(); ObservablesGenerator generator = new ObservablesGenerator(); generator.GenerateCSharp(tempPath); Helper.ShowInExplorer(tempPath); } [TestMethod] public void Load_Observable_Machines() { //using (RemoteDB db = new RemoteDB(SettingsManager.Default.DataBase.SQLServerAddress, false)) //{ // List<Machine> machines = db.MACHINES.ToList().Select(x => new Machine(x)).ToList(); // foreach (var machine in machines) // { // machine.SerialNumber = "1111"; // machine.Organization.Address.AddressString = "HOW HOW HOW"; // machine.Save(); // } //} } } }