public AdminController(IAccountAuthentication accountAuthentication)
 {
     this._accountAuthentication = accountAuthentication;
 }
Пример #2
0
 public AvatarOfProductsController(IUnitOfWork unitOfWork, IAccountAuthentication accountAuthentication)
 {
     this._unitOfWork            = unitOfWork;
     this._accountAuthentication = accountAuthentication;
 }
Пример #3
0
 public CustomersController(IUnitOfWork unitOfWork, IAccountAuthentication accountAuthentication)
 {
     this._unitOfWork            = unitOfWork;
     this._accountAuthentication = accountAuthentication;
 }
Пример #4
0
 public ProductForSellersController(IUnitOfWork unitOfWork, IAccountAuthentication accountAuthentication)
 {
     this._unitOfWork            = unitOfWork;
     this._accountAuthentication = accountAuthentication;
 }
 public SpecificationsController(IUnitOfWork unitOfWork, IAccountAuthentication accountAuthentication)
 {
     this._unitOfWork            = unitOfWork;
     this._accountAuthentication = accountAuthentication;
 }
Пример #6
0
 public AccountController(IAccountAuthentication manager)
 {
     this.manager = manager;
 }