Posts

Showing posts from February, 2024

UML /uml

 UML /uml The Unified Modeling Language (UML) is a graphical language for Object-Oriented Analysis and Design(OOAD) that gives a standard way to write a software system's blueprint. It helps to visualize, specify, construct, and document the artifacts of an object-oriented system The UML uses mostly graphical notations to express the design of software projects. Using the UML helps project teams communicate, explore potential designs, and validate the architectural design of the software. UML diagrams are used in software development and systems analysis to visually represent different aspects of a system or software application. UML diagrams provide a standardized way to communicate and document the structure, behavior, and interactions of the system. There are several types of UML diagrams, each serving a specific purpose: 1. Use Case Diagram: Used to capture the interactions between users (actors) and the system. It visually represents the functional requirements of the syste

Blazor

Image
https://blazorhelpwebsite.com/ViewBlogPost/56 In this code snippet, `@onclick` is an attribute used in frameworks like Blazor or Razor Pages to define an event handler for the `onclick` event. The `()=>OnSearch()` part is a lambda expression that defines an anonymous function. In this case, it is used to call the `OnSearch()` method when the `onclick` event is triggered.