Esempio n. 1
0
 public BirthdayController(
     IBirthdayPersonService birthdayPerson,
     IAccountService accountService,
     IImageService imageService)
 {
     _birthdayPerson = birthdayPerson;
     _accountService = accountService;
     _imageService   = imageService;
 }
Esempio n. 2
0
 public OrderController(IOrderService orderService, IAccountService accountService, IBirthdayPersonService birthdayService)
 {
     _orderService    = orderService;
     _accountService  = accountService;
     _birthdayService = birthdayService;
 }
Esempio n. 3
0
 public AccountController(IBirthdayPersonService birthdayPerson, IAccountService accountService)
 {
     _birthdayPerson = birthdayPerson;
     _accountService = accountService;
 }
 public BirthdayCardViewComponent(IBirthdayPersonService birthdayPerson)
 {
     this.birthdayPerson = birthdayPerson;
 }