Static Public Member Functions | |
static void | Main () |
The main function - all things must have a beginning and an end... and this is it! | |
static void | Main () |
The main function - all things must have a beginning and an end... and this is it! | |
Private Attributes | |
const string | fileName = "Test.bin" |
Definition at line 16 of file StartUp.cs.
static void HouseOver.StartUp.Main | ( | ) | [static] |
The main function - all things must have a beginning and an end... and this is it!
Definition at line 22 of file StartUp.cs.
References HouseOver.StartUp.fileName, and HouseOver.THARM.RealtyManager.Run().
00023 { 00024 CatalogueData data = File.Exists(fileName) ? new CatalogueData(fileName) : new CatalogueData(); 00025 RealtyManager manager = new RealtyManager(data); 00026 manager.Run(); 00027 data.Serialize(fileName); 00028 00029 }
Here is the call graph for this function:
static void HouseOver.StartUp.Main | ( | ) | [static] |
The main function - all things must have a beginning and an end... and this is it!
Definition at line 22 of file StartUp.cs.
References HouseOver.StartUp.fileName, and HouseOver.THARM.RealtyManager.Run().
00023 { 00024 CatalogueData data = File.Exists(fileName) ? new CatalogueData(fileName) : new CatalogueData(); 00025 RealtyManager manager = new RealtyManager(data); 00026 manager.Run(); 00027 data.Serialize(fileName); 00028 00029 }
Here is the call graph for this function:
const string HouseOver.StartUp::fileName = "Test.bin" [private] |