Monat: August 2019

ATB: V 0.9.1 released

The current version can be downloaded here: ATB Download The game’s main page you can find here: All Those Bugs Page Release Notes: New projects now emerge on the „Project Offers“ page every couple of days. Other projects disappear after a while. New developers now emerge on the „Hire Staff“ page every couple of days. Other…


ATB: Unit Tests/Integration Tests

The solution at the moment only contains a couple of short tests, that cover the complete cycle of a project and hiring staff. Nevertheless it’s a complete integration test over the whole system covering at least the most important areas of the application. This is the test – it’s quite self-explaining I believe (this is…


ATB: Model-ViewModel connection

One of the ever recurring questions in a MVVM architecture is how the model and the view model are kept in sync – that is, how does the model inform the view model of changes? Especially when collections (lists etc.) are involved, this can lead to lots of synchronizing (and mostly more or less duplicated)…


ATB: Basic architecture

The application is built with a classical MVVM approach in mind. The three layers are packed in three folders and will soon be moved to separate DLLs: (The “Data” folder contains serialized data (XMLs) that will be loaded by the application during start up – list of computer models, list of names etc.) Since I…