What is a correct way to draw a class diagram for an MVC web application? For example, I have two Controllers (Controller1, Controller2), a Model (Model, which is a wrapper for some wcf service), and a View (Index.cshtml). Controller1 creates an instance of a Model and calls its methods. The View communicates with Controller1 and 2 using ajax. Controller2 sends an asynchronous messages to the View.
ASP .NET MVC Application UML class diagram
886 Views Asked by Michael At
1
There are 1 best solutions below
Related Questions in ASP.NET-MVC-4
- SignalR client is not connecting to the hub after changing the client app's cookie name
- How I Can send question and answer by without reload web page
- Load SQL database saved MS word document to Syncfusion Document Editor
- @Html.ValidationSummary(true) throw CSP error
- Rotativa PDF export taking significantly longer on Windows Server 2016 after recent update
- Two ASP.NET MVC applications overwrite same session cookie
- List is not binding in controller, when pass it through hidden field from view in ASP.NET MVC
- Calling AJAX methods in parallel increases server response time?
- OpenCover Profiler Error : ProfilerCommunication::RequestInformation(...) => Communication (Chat channel - TrackAssembly) with host has failed
- Nested child sub menus not getting generated in Asp.Net Core MVC project
- How to show Documents on viewer when htmlmode: true in Configuration.yml file in Group Docs
- ASP.NET MVC role is trying to use SQL Server Express not the SQL Server
- Error HRESULT E_FAIL has been returned from a call to a COM component in Asp.net MVC
- How I can get total number from Database by SignalR
- Application Insights telemetry shows 'NA' from MVC 4 application behind private load balancer
Related Questions in UML
- steps to create a web app with backend and database and web
- How to present this example concept in UML: Using 2 LCD displays in C/C++
- In the UML diagram, in the Class diagram, what does stereotype mean <<compound>>?
- UML representation of containerized services
- uml class diagram for boxing match
- Polymorphism can be described as:
- Why am I getting a plantUML syntax error with a statechart in a package?
- System or external system as an actor in a use case?
- How to model statechart behavior inheritance using UML?
- Can we have an interface create objects of another interface in UML Class Diagrams?
- Is my relationships correct in my class diagram
- How to attach a Port shape to a class shape?
- How to correctly create a sequence diagram?
- How can I insert activity diagram image to an use case in Enterprise architect?
- Use case extends or include
Related Questions in SOFTWARE-DESIGN
- how to measure Software as a services performace
- Why does the main function returns unexpected execution result?
- How to wrap my head around Object Oriented Design
- Specifying static and dynamic sizes at compile time
- Do unused imports in java effects performance and consume memory?
- Where to put the association model -> view model?
- Why doesn't JavaScript get its own thread in common browsers?
- Am I overusing the Singleton pattern?
- ASP .NET MVC Application UML class diagram
- I want to automate a daily task, need certain info from pdf to go into specific areas of an excel file
- Small table to Big table update
- Message in side client visual basic application?
- How to deal with multiple composed/related conditions?
- Programmatically grouping and typehinting different classes
- How can I measure the quality of my software architecture?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As said, your class diagram can not express behavior. So basically it could look like this:
To picture the behavior you can use sequence diagram (but you did not ask for it).