Small API for generating random user data.
- Execute the script from Database.sql in MSSQL.
- Change
"ConnectionString": ""
in the appsettings.json file.
- (optional) Install and use HttpRepl
dotnet tool install -g Microsoft.dotnet-httprepl
dotnet run --urls=https://localhost:PORT
[
{
"lastName": "Нечаев",
"firstName": "Клим",
"middleName": "Порфириевич",
"gender": "Мужской",
"birthdate": "27.08.1957",
"phoneNumber": "+79564001617",
"email": "nechaev_9512@bk.ru",
"adress": {
"city": "Нахичевань",
"region": "Калмыкия",
"country": "Россия"
}
},
{
"lastName": "Гончаров",
"firstName": "Климентий",
"middleName": "Станиславович",
"gender": "Мужской",
"birthdate": "18.01.1945",
"phoneNumber": "+79514198048",
"email": "goncharov51@ya.ru",
"adress": {
"city": "Джеймстаун",
"region": "Bistrita-Nasaud",
"country": "Румыния"
}
},
{
"lastName": "Акимов",
"firstName": "Фадей",
"middleName": "Андрониевич",
"gender": "Мужской",
"birthdate": "30.04.1989",
"phoneNumber": "+79754639074",
"email": "akimov_4199@outlook.com",
"adress": {
"city": "Baexem",
"region": "Нарынская обл.",
"country": "Кыргызстан"
}
}
]