Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 883 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 883 Bytes

Project Title

DotNet-Angular-SmallApp

Description

This is a small APP developed using .NET 6 and Angular 17.

Dependencies

  • Dot Net 6
  • Angular 17

Details

1- Back-End (.NET) :

Simple Web Api that contains Book Model (Entity) and a Controller to serve the books data.
The Book data are static and no DataBase used.

2- Front-End (Angular) :

There are 3 components called Home, Data, Event.
Home Component displays welcome message to user.
Event Component has a button to display alert in the event of click.
Data Component is using a "service" and a "model(Interface)" to fetch data from the API and display them into a html table using a loop.

All route wrote in a seperate file called app.routes.
There is a navigation menu to use Angular routing to switch between the component.

This APP is using pure css for Styling.