Where to implement Facade in MVC?

4

I'm developing a C # project using MVC, but the teacher wants all student projects to have Facade, the question is this!

Where do I implement the Facade, Model, View, or Controller?

    
asked by anonymous 19.04.2016 / 14:15

1 answer

2

The main goal of Facade is to mediate the interaction between view and model , or in some cases only model . In your case you implement in controller .

    
19.04.2016 / 15:01