forked from sanchezvem/PyroFetes
Some fixes
This commit is contained in:
@@ -8,6 +8,7 @@ public sealed class GetProductByIdSpec : Specification<Product>
|
||||
public GetProductByIdSpec(int? productId)
|
||||
{
|
||||
Query
|
||||
.Where(p => p.Id == productId);
|
||||
.Where(p => p.Id == productId)
|
||||
.Include(p => p.Prices);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user