Recent content by wallst

  1. W

    OO design: Identifying classes

    An insight applicable to all discussions not just within the Software world. We should get Noam Chomsky on this thread.:biggrin: "I know my own nation best. That's why I despise it the most. And I know and love my own people too, the swine. I'm a patriot. A dangerous man" We've not quite...
  2. W

    OO design: Identifying classes

    A very good summary of OOP benefits. I may learn it word for word. Perhaps somebody at my level shouldn't read that. Somebody somewhere asked me was I using MVC, so I then assumed I should as its the only one I was slightly aware of. Know about design patterns for interviews. This is too far...
  3. W

    OO design: Identifying classes

    I thought of this idea as it would make things very simple for available rooms. Otherwise I would have to read every reservation on the system to check what its data and room type is and sum the data. Your way is much faster and easier to work with.
  4. W

    OO design: Identifying classes

    Design pattern?? No, I'm hardly familiar with clasess OOP etc. Thats the purpose of this system, just to get experience in designing classes and then implementing them. Plan to work on Patterns, etc, once I have at least polymor encapsulation inheritance abstraction better understood. My control...
  5. W

    OO design: Identifying classes

    Not using database, using a csv file instead. The data end is fine, I can work that out when it comes to it or make changes where necessary. The logic of using objects to work as a control system is what's confusing me. If I get the data from the user, I can write the data to the correct file...
  6. W

    OO design: Identifying classes

    Hi, I have started to try and design a system using OO principles. I have the model, but now I'm stuck on the next step. I followed the steps to identify the domain model and the classes. inheritance aggregation etc. E.g Hotel has rooms Hotel has customers Customers have reservations...