We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f525b6 commit e597196Copy full SHA for e597196
doc/Developing-Step-By-Step-Core.html
@@ -46,7 +46,7 @@ <h3>Creating The Project</h3>
46
//some other code...
47
48
//Enable this line to create a multi-tenant application.
49
- //Configuration.MultiTenancy.IsEnabled = false;
+ Configuration.MultiTenancy.IsEnabled = false;
50
51
52
}
@@ -1375,7 +1375,7 @@ <h3>AddPhone and DeletePhone Methods</h3>
1375
await _phoneRepository.DeleteAsync(input.Id);
1376
1377
1378
-public async Task<PhoneInPersonListDto> AddPhone(AddPhoneInput input)
+public async Task<PhoneInPersonListDto> AddPhone([FromBody]AddPhoneInput input)
1379
{
1380
var person = _personRepository.Get(input.PersonId);
1381
0 commit comments