Posts by R. Carvalho • 158 points
4 posts
- 
		3 votes3 answers239 viewsQ: Reusability of the ControlI came across the following phrase using MVC: "(...) the View and Controller Objects are specifically Written to each type of interface (and technology), and are generally not reusable between… mvcasked R. Carvalho 158
- 
		4 votes2 answers472 viewsQ: MVC and DAO - Data RulesIn a CRUD where at the time of registration it is necessary to verify if a certain field already exists in the bank, in order not to allow duplicate registration, this rule of verification must be… 
- 
		1 votes1 answer1285 viewsA: Flip a stack using an additional stack and some variablesWhen stacking, the last entry becomes the first exit. Knowing this, just remove the stack elements at the same time you add it in another. Cell A = 5, 4, 3, 2, 1 (Top) Stack B; Cell A = 5, 4, 3, 2… 
- 
		4 votes1 answer799 viewsQ: UML - Use Case SpecificationI have to specify a use case 'Register Company (CRUD)', which is used by 3 actors: Employee (Who can only change the temperature registered in the company) Attendant (Which is employee…