This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Merge pull request
#1910
from onurkanbakirci/dev
Shortcuts added for get methods.
pull/1914/head
Tarun Jain
2 years ago
committed by
GitHub
parent
f026de60cf
27445a34f3
commit
de90e6e198
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
2 changed files
with
2 additions
and
14 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-7
src/Services/Ordering/Ordering.Infrastructure/Repositories/BuyerRepository.cs
+1
-7
src/Services/Ordering/Ordering.Infrastructure/Repositories/OrderRepository.cs
+ 1
- 7
src/Services/Ordering/Ordering.Infrastructure/Repositories/BuyerRepository.cs
View File
@ -4,13 +4,7 @@ public class BuyerRepository
:
IBuyerRepository
{
private
readonly
OrderingContext
_context
;
public
IUnitOfWork
UnitOfWork
{
get
{
return
_context
;
}
}
public
IUnitOfWork
UnitOfWork
=
>
_context
;
public
BuyerRepository
(
OrderingContext
context
)
{
+ 1
- 7
src/Services/Ordering/Ordering.Infrastructure/Repositories/OrderRepository.cs
View File
@ -5,13 +5,7 @@ public class OrderRepository
{
private
readonly
OrderingContext
_context
;
public
IUnitOfWork
UnitOfWork
{
get
{
return
_context
;
}
}
public
IUnitOfWork
UnitOfWork
=
>
_context
;
public
OrderRepository
(
OrderingContext
context
)
{
Write
Preview
Loading…
Cancel
Save