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;
 }