Skip to content

Commit 07837d1

Browse files
committed
ExtendEntitiesDemo docs upgraded to ABP v1.0
1 parent 0538bb2 commit 07837d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Extending-Existing-Entities.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h4>Add Address On User Create/Edit</h4>
106106
object which contains a <strong>UserEditDto</strong> object that includes user
107107
properties. So, we should add Address to UserEditDto to allow clients to change
108108
Address property on create/update:</p>
109-
<pre lang="cs">public class UserEditDto : IValidate, IPassivable
109+
<pre lang="cs">public class UserEditDto : IPassivable
110110
{
111111
//...existing code
112112

@@ -228,7 +228,7 @@ <h4>
228228
<a href="http://www.aspnetboilerplate.com/Pages/Documents/Data-Transfer-Objects" target="_blank">
229229
DTOs</a> for client communication). So, we should add the Price property to
230230
EditionListDto too:</p>
231-
<pre lang="cs">[AutoMapFrom(typeof(Edition)<strong>, typeof(MyEdition)</strong>)]
231+
<pre lang="cs">[AutoMapFrom(<strong>typeof(MyEdition)</strong>)]
232232
public class EditionListDto : EntityDto, IHasCreationTime
233233
{
234234
//...existing code

0 commit comments

Comments
 (0)