Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
3 views5 pages

DoConnect Capstone Project (.NET + Angular)

Uploaded by

Chandan Chandu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views5 pages

DoConnect Capstone Project (.NET + Angular)

Uploaded by

Chandan Chandu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Project Name: DoConnect (Frontend in Angular, Backend in ASP.

NET
Core MVC)

Updated Problem Statement:

DoConnect is a Q&A platform where users can ask and answer questions related to various
technical topics. The application has two types of users:

●​ User
●​ Admin

Tech Stack:

●​ Frontend: Angular
●​ Backend: ASP.NET Core MVC with Web API
[email protected]
4O6PR3ZLGK ●​ Database: SQL Server (using Entity Framework Core as ORM)
●​ File Storage: File upload functionality on the server
●​ API Documentation: Swagger for Web API
●​ Notifications: SignalR (optional for real-time notifications)

User Stories:

User Stories (User)

1.​ User Authentication:​


As a user, I should be able to log in, log out, and register into the application.
2.​ Ask Questions:​
As a user, I should be able to ask a question under any topic.
3.​ Search Questions:​
As a user, I should be able to search for questions based on a search query.
4.​ Answer Questions:​
As a user, I should be able to answer any question posted.
5.​ Multiple Answers:​
As a user, I should be able to provide multiple answers to the same question.
6.​ Image Upload:​
As a user, I should be able to upload images along with my question or answer.

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Admin Stories

1.​ Admin Authentication:​


As an admin, I should be able to log in, log out, and register into the application.
2.​ Receive Notifications:​
As an admin, I should receive notifications when a new question is posted or an answer
is given.
3.​ Approve Questions & Answers:​
As an admin, I should be able to approve or reject questions and answers, making them
visible on the platform only after approval.
4.​ Moderate Content:​
As an admin, I should be able to delete inappropriate questions or answers.

System Requirements:

●​ Frontend: Angular-based UI for user interaction.


●​ Backend: ASP.NET Core MVC with Web API for business logic and data access.
●​ ORM: Entity Framework Core (EF Core) for database interactions.
●​ Database: SQL Server for storing user, question, and answer data.
●​ Image Uploads: Store uploaded images in a server-side folder.

Architecture Overview:
[email protected]
4O6PR3ZLGK
1.​ Frontend (Angular):
○​ User Interface for Users and Admin
○​ Consumes Web API for login, registration, questions, answers, and approvals
○​ Routing for User and Admin pages (Angular Router)
○​ Manage state using Context API or Redux
2.​ Backend (ASP.NET Core MVC):
○​ ASP.NET Core MVC with Web API endpoints for data exchange
○​ Entity Framework Core to handle database CRUD operations
○​ JWT Token Authentication for secure login/logout
○​ Web API endpoints to support user authentication, question, and answer
management
○​ SignalR or Notification System for admin notifications
3.​ Database (SQL Server):
○​ Tables for Users, Questions, Answers, Images
○​ Relationships: One-to-Many between Users and Questions, Questions and
Answers
4.​ Image Upload:
○​ Users can upload images, and these images are stored in a server directory
○​ File path references are stored in the database
5.​ API Documentation:
○​ Swagger UI for testing and documenting the Web API

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Sprint Plan:

Sprint I:

Objectives:

1.​ Use Case Document:​


Prepare use case documentation for all functionalities (login, question management,
etc.).
2.​ Database Schema Design:​
Define tables and relationships:
○​ Users (UserId, Username, Password, Role)
○​ Questions (QuestionId, UserId, QuestionTitle, QuestionText, Status)
○​ Answers (AnswerId, QuestionId, UserId, AnswerText, Status)
○​ Images (ImageId, ImagePath, QuestionId/AnswerId)
3.​ Select ORM Tool:​
Use Entity Framework Core (EF Core) for database interactions.
4.​ Backend Setup:
○​ Identify necessary controllers (UserController, QuestionController,
AnswerController).
[email protected]
4O6PR3ZLGK ○​ Create ASP.NET Core MVC Views (HTML templates) as placeholders for the
frontend.

Deliverables:

●​ Use case document


●​ Database schema (ERD and .sql script)
●​ Static views in MVC for Questions, Answers, and Authentication

Sprint II:

Objectives:

1.​ Frontend Setup (Angular):


○​ Initialize a Angular app for the user and admin interfaces.
○​ Implement routing for login, register, ask question, answer question, and admin
approval pages.
2.​ Backend Implementation (ASP.NET Core MVC):
○​ Implement CRUD operations for users (register, login, logout).
○​ Implement user authentication with JWT Tokens.
○​ Create the DBContext object using EF Core.

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
3.​ API for Questions & Answers:
○​ Create Web API for CRUD operations on Questions and Answers.
○​ Implement image upload functionality in the backend.
4.​ Admin and User Pages:
○​ Design and implement the layout for user pages (Angular) and admin pages.
○​ Connect the Angular frontend to the Web API (Axios or Fetch).

Deliverables:

●​ Angular components for user and admin UI


●​ Web API endpoints for Questions, Answers, and Images
●​ Working authentication for users and admin

Sprint III:

Objectives:

1.​ Search Functionality (API + Frontend):


○​ Develop the search API for questions based on query strings.
○​ Integrate the search functionality into the Angular frontend.
2.​ Admin
[email protected]:
4O6PR3ZLGK ○​ Implement notification system (optional: SignalR) for admins when a question or
answer is added.
○​ Display notifications on the admin dashboard.
3.​ Admin Approval Workflow:
○​ Implement the approval workflow for questions and answers.
○​ Only approved content should be visible to users.
4.​ Swagger API Testing:
○​ Add Swagger UI for API documentation and testing.
5.​ Final Integration:
○​ Ensure that all frontend components are correctly integrated with the backend
API.
○​ Test the entire system for any bugs or performance issues.

Deliverables:

●​ Search functionality in the API and frontend


●​ Admin approval module with notifications
●​ Swagger UI documentation for all Web API endpoints
●​ Fully functional Angular frontend consuming ASP.NET Core MVC backend API

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Key Points for Implementation:

1.​ Frontend:
○​ Use Angular Router for navigation between different views (login, register, ask
question, etc.).
○​ Manage API requests and responses using Axios.
○​ State management using Context API or Redux.
2.​ Backend:
○​ Implement JWT-based authentication for secure user sessions.
○​ Use Entity Framework Core for database operations (CRUD).
○​ Create Web API endpoints for users, questions, and answers, and consume
them in Angular.
3.​ Image Uploads:
○​ Handle image uploads in the backend using IFormFile in ASP.NET Core.
○​ Store file references in the database and serve them through the API.
4.​ Admin Notifications (optional):
○​ Implement SignalR for real-time notifications to admins.

[email protected]
4O6PR3ZLGK

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.

You might also like