|
|
@ -4,7 +4,13 @@ public class BuyerRepository |
|
|
|
: IBuyerRepository |
|
|
|
{ |
|
|
|
private readonly OrderingContext _context; |
|
|
|
public IUnitOfWork UnitOfWork => _context; |
|
|
|
public IUnitOfWork UnitOfWork |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return _context; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public BuyerRepository(OrderingContext context) |
|
|
|
{ |
|
|
|