-
Notifications
You must be signed in to change notification settings - Fork 0
/
ValidataTest.Core.xml
417 lines (417 loc) · 26 KB
/
ValidataTest.Core.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
<?xml version="1.0"?>
<doc>
<assembly>
<name>ValidataTest.Core</name>
</assembly>
<members>
<member name="T:ValidataTest.Core.DAL.UnitOfWork">
<summary>
Provides API to manipulate customers and their orders through CustomerRepository and OrderRepository
</summary>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.#ctor">
<summary>
Constructor for creating Unit of Work with Data Source to manipulate customers and their orders
</summary>
<example>var unitOfWork = new UnitOfWork();</example>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.#ctor(ValidataTest.Core.DAL.ICustomerDbContext)">
<summary>
Constructor using for tests (possible to set mock dbcontext)
</summary>
<param name="dbcontext">Dbcontext, usually mock object</param>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.GetCustomers(System.Linq.Expressions.Expression{System.Func{ValidataTest.Core.Models.Customer,System.Boolean}},System.Func{System.Linq.IQueryable{ValidataTest.Core.Models.Customer},System.Linq.IOrderedQueryable{ValidataTest.Core.Models.Customer}},System.String)">
<summary>
Get Customers using settings for completeness of information
</summary>
<param name="filter">expression for selecting Customers</param>
<param name="orderBy">function to order by rules</param>
<param name="includeProperties">comma-separated lists of Customer properties to add in</param>
<returns>Queries of Customers</returns>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.GetCustomerAsync(System.Int32,System.String)">
<summary>
Get Customer by ID using settings for completeness of information
</summary>
<param name="id">Id of Customer for search</param>
<param name="includeProperties">comma-separated lists of Customer properties to add in</param>
<returns>Asynchronous operation with result as Customer or null</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.CreateCustomerAsync(ValidataTest.Core.Models.Customer)">
<summary>
Create Customer in the database
</summary>
<param name="customer">Customer for creating</param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<example>
UnitOfWork unitOfWork = new UnitOfWork();
var customer = new Customer("test Name", "test LastName", "test Address", "test Code", null); /* create with no any orders */
var result = await unitOfWork.CreateCustomerAsync(customer); /* "var customer" will have new CustomerID for possible operation further */
</example>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.UpdateCustomerAsync(ValidataTest.Core.Models.Customer)">
<summary>
Update Customer in the database
</summary>
<param name="customer"></param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.DeleteCustomerAsync(ValidataTest.Core.Models.Customer)">
<summary>
Delete Customer from the database
</summary>
<param name="customer"></param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.GetOrders(System.Linq.Expressions.Expression{System.Func{ValidataTest.Core.Models.Order,System.Boolean}},System.Func{System.Linq.IQueryable{ValidataTest.Core.Models.Order},System.Linq.IOrderedQueryable{ValidataTest.Core.Models.Order}},System.String)">
<summary>
Get Orders using settings for completeness of information
</summary>
<param name="filter">expression for selecting Orders</param>
<param name="orderBy">function to order by rules</param>
<param name="includeProperties">comma-separated lists of Order properties to add in</param>
<returns>Queries of Orders</returns>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.GetOrderAsync(System.Int32,System.String)">
<summary>
Get Order by ID using settings for completeness of information
</summary>
<param name="id">Id of Order for search</param>
<param name="includeProperties">comma-separated lists of Order properties to add in</param>
<returns>Asynchronous operation with result as Order or null</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.CreateOrderAsync(ValidataTest.Core.Models.Order)">
<summary>
Create Order in the database
</summary>
<param name="order">Order for creating</param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.UpdateOrderAsync(ValidataTest.Core.Models.Order)">
<summary>
Update Order in the database
</summary>
<param name="order"></param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.DeleteOrderAsync(ValidataTest.Core.Models.Order)">
<summary>
Delete Order from the database
</summary>
<param name="order"></param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.GetItems(System.Linq.Expressions.Expression{System.Func{ValidataTest.Core.Models.Item,System.Boolean}},System.Func{System.Linq.IQueryable{ValidataTest.Core.Models.Item},System.Linq.IOrderedQueryable{ValidataTest.Core.Models.Item}},System.String)">
<summary>
Get Items using settings for completeness of information
</summary>
<param name="filter">expression for selecting Items</param>
<param name="orderBy">function to order by rules</param>
<param name="includeProperties">comma-separated lists of Item properties to add in</param>
<returns>Queries of Items</returns>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.GetItemAsync(System.Int32,System.String)">
<summary>
Get Item by ID using settings for completeness of information
</summary>
<param name="id">Id of Item for search</param>
<param name="includeProperties">comma-separated lists of Item properties to add in</param>
<returns>Asynchronous operation with result as Item or null</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.CreateItemAsync(ValidataTest.Core.Models.Item)">
<summary>
Create Item in the database
</summary>
<param name="item">Item for creating</param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.UpdateItemAsync(ValidataTest.Core.Models.Item)">
<summary>
Update Item in the database
</summary>
<param name="item"></param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.DeleteItemAsync(ValidataTest.Core.Models.Item)">
<summary>
Delete Item from the database
</summary>
<param name="item"></param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.GetProducts(System.Linq.Expressions.Expression{System.Func{ValidataTest.Core.Models.Product,System.Boolean}},System.Func{System.Linq.IQueryable{ValidataTest.Core.Models.Product},System.Linq.IOrderedQueryable{ValidataTest.Core.Models.Product}},System.String)">
<summary>
Get Products using settings for completeness of information
</summary>
<param name="filter">expression for selecting Products</param>
<param name="orderBy">function to order by rules</param>
<param name="includeProperties">comma-separated lists of Product properties to add in</param>
<returns>Queries of Products</returns>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.GetProductAsync(System.Int32,System.String)">
<summary>
Get Product by ID using settings for completeness of information
</summary>
<param name="id">Id of Product for search</param>
<param name="includeProperties">comma-separated lists of Product properties to add in</param>
<returns>Asynchronous operation with result as Product or null</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.CreateProductAsync(ValidataTest.Core.Models.Product)">
<summary>
Create Product in the database
</summary>
<param name="product">Product for creating</param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.UpdateProductAsync(ValidataTest.Core.Models.Product)">
<summary>
Update Product in the database
</summary>
<param name="product"></param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="M:ValidataTest.Core.DAL.UnitOfWork.DeleteProductAsync(ValidataTest.Core.Models.Product)">
<summary>
Delete Product from the database
</summary>
<param name="product"></param>
<returns>Asynchronous operation with result as the number of state entries written to the database</returns>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.Data.Entity.Infrastructure.DbUpdateConcurrencyException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
<exception cref="T:System.OperationCanceledException">
<see href="https://docs.microsoft.com/en-US/dotnet/api/microsoft.entityframeworkcore.dbcontext.savechangesasync?view=efcore-6.0"/>
</exception>
</member>
<member name="T:ValidataTest.Core.Models.Customer">
<summary>
Customer is a person which makes Orders
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Customer.FirstName">
<summary>
Provides Customer first name
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Customer.LastName">
<summary>
Provides Customer last name
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Customer.Address">
<summary>
Provides Customer address as a string
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Customer.PostalCode">
<summary>
Provides postal code of Customer address
</summary>
<remarks>https://www.quora.com/What-is-the-maximum-number-of-digits-in-a-zipcode-postal-code-for-a-place-in-this-universe</remarks>
</member>
<member name="P:ValidataTest.Core.Models.Customer.Orders">
<summary>
Provides Orders of Customer
</summary>
</member>
<member name="T:ValidataTest.Core.Models.Item">
<summary>
Item is a part of Order, connecting Order and Product
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Item.Quantity">
<summary>
Provides quantity of Product in some proper Units
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Item.Product">
<summary>
Provides Product. Product is a non-changeable in this context entity
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Item.Order">
<summary>
Provides Order
</summary>
</member>
<member name="T:ValidataTest.Core.Models.Order">
<summary>
Order which was made by Customer, order contents are Items
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Order.Date">
<summary>
Provides date of Order
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Order.Customer">
<summary>
Provides Order Customer
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Order.Items">
<summary>
Provides Order contents as Items
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Order.TotalPrice">
<summary>
Provides total price of all Order Items. Recalculating everytime when you call it
</summary>
</member>
<member name="T:ValidataTest.Core.Models.Product">
<summary>
Product is a dictionary of goods for Order
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Product.Name">
<summary>
Provides product name
</summary>
</member>
<member name="P:ValidataTest.Core.Models.Product.Price">
<summary>
Provides price for one Unit
</summary>
</member>
</members>
</doc>