예제 #1
0
 private Task AddProductAsync(Guid id, string name, decimal price)
 {
     return(fixture.AddAsync(new ProductDocument()
     {
         Id = id,
         Name = name,
         Price = price
     }));
 }