Asked by:
Design Api for Survey Application

Question
-
User-1466455470 posted
Using the .NET Core framework, build simple microservice Api project to capture the create the survey, send survey invites, record the survey and analysis the survey(average).
Requirements
1. Use possible Oops concepts and design patterns.
2. Need test cases(use any test framework)
Wednesday, July 17, 2019 12:27 PM
All replies
-
User-821857111 posted
Do you have a question or are you asking someone to quote for your requirement?
Wednesday, July 17, 2019 12:50 PM -
User-1466455470 posted
This is a question
Wednesday, July 17, 2019 12:53 PM -
User-821857111 posted
Where? Can you clarify? Are you asking people to provide code to satisfy your requirement? Or have you built something which isn't working that you need help with debugging?
Wednesday, July 17, 2019 12:54 PM -
User-1466455470 posted
I am trying to achieve the following using asp.net core web api:
- Create a Survey Application and consume API to create a survey
- Send Survey Invites
- Record the survey
- Analyse the survey
Could someone please help me with this.
Best Regards,
Hunaid Hussain.
Wednesday, July 17, 2019 1:13 PM -
User2053451246 posted
No one is going to just "help" you with this. Learn .Net Core, start writing your application/API, come back here for specific problems you run into. Forums are not a "design this app for me for free" service.
Wednesday, July 17, 2019 3:44 PM -
User-854763662 posted
Hi itshunaid ,
Developing an application requires requirements analysis, model relationship definition, data access design, etc. These are all determined by you, the forum is mainly to help you solve the problems encountered in the development process.
For asp.net core web api development beginners, you could refer to below link about creating web APIs with ASP.NET Core:
https://docs.microsoft.com/en-us/aspnet/core/web-api/?view=aspnetcore-2.2
For model relationship definition and data access , you could take aside time to read the relevant documentations on EF Core :
https://docs.microsoft.com/en-us/ef/core/
https://docs.microsoft.com/en-us/ef/core/get-started/aspnetcore/new-db?tabs=visual-studio
https://docs.microsoft.com/en-us/ef/core/modeling/relationships
You could learn about EF Core based on the left navigation bar in the links.
Best Regards ,
Sherry
Thursday, July 18, 2019 2:07 AM