https://github.com/florinamt/.net_programming_assignments
https://github.com/florinamt/.net_programming_assignments
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/florinamt/.net_programming_assignments
- Owner: FlorinaMt
- Created: 2024-09-08T16:48:32.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-11-28T06:21:33.000Z (6 months ago)
- Last Synced: 2025-01-12T16:20:53.789Z (5 months ago)
- Language: C#
- Size: 264 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Features and components
User, having username and a password. It needs an Id of type int.
Post, written by a User. It contains a Title and a Body. It also needs an Id, of type int.
A User can also write a Comment on a Post. A Comment just contains a Body and an Id of type int.
A User can Like a Post.
Domain model:

· Create new user (username, password)
· See the list of users
· Create new post
· Like a post
· Add comment to existing post
· View posts overview (display [title, id] for each post)
· View specific post (title, body, likes and comments on the post)