Beispiel #1
0
 public AccountController(IFileProxy fileProxy, IOtpProxy otpProxy, ISmsSender smsSender, IStaffMemberProxy staffProxy, IEmailSender emailSender, IAccountProxy accountProxy)
 {
     _fileProxy    = fileProxy;
     _otpProxy     = otpProxy;
     _smsSender    = smsSender;
     _staffProxy   = staffProxy;
     _emailSender  = emailSender;
     _accountProxy = accountProxy;
 }
 public TicketController(ITicketProxy ticketProxy,
                         IReplyProxy replyProxy,
                         IStaffMemberProxy staffProxy,
                         IProductProxy productProxy,
                         IOptions <StorageOptions> storageOptions)
 {
     _ticketProxy    = ticketProxy;
     _replyProxy     = replyProxy;
     _staffProxy     = staffProxy;
     _productProxy   = productProxy;
     _storageOptions = storageOptions.Value;
 }
 public StaffController(IStaffMemberProxy staffProxy)
 {
     _staffProxy = staffProxy;
 }