Design Anti-Patterns - C# - Do you call this a God object?

Posted by Reddy S R on Programmers See other posts from Programmers or by Reddy S R
Published on 2011-06-23T09:09:27Z Indexed on 2011/06/23 16:31 UTC
Read the original article Hit count: 372

I am writing Portfolio module for my web site and it has 3 components. Gallery Category, Gallery, & Gallery Images.
I am doing all the request handling, (creating, reading, updating, other), for the above 3 components in 1 class, Portfolio.
DB handling jobs for Portfolio module is done in another file.
My question is, even just for request handling purpose, can you do all the operations in 1 class?

-Reddy

© Programmers or respective owner

Related posts about design-patterns

Related posts about anti-patterns