I have a database with 6 tables T_cliente , T_hotel , T_reserva , T_tarcre , T_tarifa and T_tiphab .
Here is the UML diagram. What I do not know how to do, is to check if the room is available or not....
Can you make UML diagrams to document a system that was created using structured programming? Since I have a lot of emphasis on classes and objects, I wonder if it would be correct.
I have to do some reverse engineering and make a class diagram of an application for android already done, but I really do not know if I should add the activities and fragments of the app or they can go in another diagram.
I wanted to know if I made a correct interpretation of the following code when graphing the UML.
class Sala
{
protected arraylist butacas;
private int capacidad;
public sala(int c)
{
butacas = new arraylist();
c...
I have a MVC5 project in Visual Studio 2015 Enterprise, I wanted to know if there is any way to generate an entire UML modeling project for my MVC project, something like right click the MVC project and generate a UML modeling project, and from...