Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
megafetis authored May 28, 2020
1 parent 8430df6 commit ec9ef28
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,19 @@ class MyStore
}
}

//...
var store = new MyStore(_conveyor);
var entity = new EntityClass1();
var entity2 = new EntityClass1();
var payload = new EditEntityModel1()
{
Name = "Name 1",
Description = "Description 1",
}

store.AddOrSaveEntity(entity,payload);
store.AddOrSaveEntity(entity2,payload);

```

Expand Down Expand Up @@ -243,4 +255,4 @@ class MyStore

}

```
```

0 comments on commit ec9ef28

Please sign in to comment.