Re: MVC Theory Question

2011-12-29 Thread Mike Abdullah
On 28 Dec 2011, at 17:05, Philip McIntosh wrote: > > I am just wondering about something with respect to the Model-View-Controller > (MVC) design pattern. Should any validation of input or output be done by the > model class which is handling and processing the data, or is validation more > p

Re: MVC Theory Question

2011-12-28 Thread Keary Suska
On Dec 28, 2011, at 10:05 AM, Philip McIntosh wrote: > I am just wondering about something with respect to the Model-View-Controller > (MVC) design pattern. Should any validation of input or output be done by the > model class which is handling and processing the data, or is validation more > p

MVC Theory Question

2011-12-28 Thread Philip McIntosh
I am just wondering about something with respect to the Model-View-Controller (MVC) design pattern. Should any validation of input or output be done by the model class which is handling and processing the data, or is validation more properly a task to be assigned to a controller class?