Ejemplo n.º 1
0
 public BOAccountController(
     UnitOfWork uow,
     BOAccountService boService,
     PasswordService passwordService)
 {
     _unitOfWork      = uow;
     _boService       = boService;
     _passwordService = passwordService;
 }
 public BOAccountBaseController(UnitOfWork uow, BOAccountService boAccountService)
 {
     _uow = uow;
     _boAccountService = boAccountService;
 }