I'm using the entity framework and developing a system through ASP.NET MVC5, but I was in doubt about CRUD.
The methods of interaction with the bank (Create, Update, Select, Delete) should be inserted in which part of the project? I thought of describing each of these functions within the Model classes, but it does not seem right to me.
Another doubt ... is it right to create a generic CRUD interface for all models?