コード例 #1
0
 public PartnerRequestsController(IUsersService userService, IAdressesService adressesService,
                                  IPartnerRequestsService partnerRequestService, IMapper mapper)
 {
     this.userService           = userService;
     this.adressesService       = adressesService;
     this.partnerRequestService = partnerRequestService;
     this.mapper = mapper;
 }
コード例 #2
0
 public AdminNavbarComponent(IPartnerRequestsService partnerRequestService,
                             IUserRequestsService userRequestService,
                             IOrdersService ordersService)
 {
     this.partnerRequestService = partnerRequestService;
     this.userRequestService    = userRequestService;
     this.ordersService         = ordersService;
 }
コード例 #3
0
 public HomeController(IOrdersService ordersService, IPartnerRequestsService partnerRequestService, IMapper mapper)
 {
     this.ordersService         = ordersService;
     this.partnerRequestService = partnerRequestService;
     this.mapper = mapper;
 }