ruc-RAWDATA-striketeam / SOVA

Application for accessing StackOverflow data.
MIT License
0 stars 1 forks source link

Restructure code and experiment with superclass abstraction for questions and answers #21

Closed jonasschjerlund closed 8 years ago

jonasschjerlund commented 8 years ago

A matter of playing around with the layers and class structure. Since questions and answers share some attributes, it might be beneficial for longterm maintenance to introduce an abstract class that holds the identical attributes, for the respective question and answer classes to inherit from.

Chronim commented 8 years ago

Post has been turned into an abstract class and classes Answer and Question now implement Post. Changes have been made to Domain layer and DAL to work with this new Super- Subclass model.