Skip to content

Commit e597196

Browse files
committed
made some fixes on core step-by-step doc
1 parent 9f525b6 commit e597196

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Developing-Step-By-Step-Core.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h3>Creating The Project</h3>
4646
//some other code...
4747

4848
//Enable this line to create a multi-tenant application.
49-
//Configuration.MultiTenancy.IsEnabled = false;
49+
Configuration.MultiTenancy.IsEnabled = false;
5050

5151
//some other code...
5252
}
@@ -1375,7 +1375,7 @@ <h3>AddPhone and DeletePhone Methods</h3>
13751375
await _phoneRepository.DeleteAsync(input.Id);
13761376
}
13771377

1378-
public async Task&lt;PhoneInPersonListDto&gt; AddPhone(AddPhoneInput input)
1378+
public async Task&lt;PhoneInPersonListDto&gt; AddPhone([FromBody]AddPhoneInput input)
13791379
{
13801380
var person = _personRepository.Get(input.PersonId);
13811381

0 commit comments

Comments
 (0)