Ejemplo n.º 1
0
 public UserService(IUnitOfWork unitOfWork, IPasswordHelper passwordHelper)
 {
     _drinksContext = unitOfWork.DrinksContext;
     _passwordHelper = passwordHelper;
 }
Ejemplo n.º 2
0
 public UserService(IUnitOfWork unitOfWork, IPasswordHelper passwordHelper)
 {
     _drinksContext  = unitOfWork.DrinksContext;
     _passwordHelper = passwordHelper;
 }
Ejemplo n.º 3
0
 public LogService(IUnitOfWork unitOfWork)
 {
     _drinksContext = unitOfWork.DrinksContext;
 }
Ejemplo n.º 4
0
 public ProductsService(IUnitOfWork unitOfWork)
 {
     _drinksContext = unitOfWork.DrinksContext;
 }
Ejemplo n.º 5
0
 public UnitOfWork(IDrinksContext drinksContext)
 {
     _drinksContext = drinksContext;
 }
Ejemplo n.º 6
0
 public ProductsService(IUnitOfWork unitOfWork)
 {
     _drinksContext = unitOfWork.DrinksContext;
 }
Ejemplo n.º 7
0
 public LogService(IUnitOfWork unitOfWork)
 {
     _drinksContext = unitOfWork.DrinksContext;
 }
Ejemplo n.º 8
0
 public TransactionService(IUnitOfWork unitOfWork, IUserService userService, IProductsService productsService)
 {
     _userService     = userService;
     _productsService = productsService;
     _drinksContext   = unitOfWork.DrinksContext;
 }
Ejemplo n.º 9
0
 public UnitOfWork(IDrinksContext drinksContext)
 {
     _drinksContext = drinksContext;
 }