Пример #1
0
 public UserController(IUserServices userService, ICustomAuthorization customAuth)
 {
     _customAuth  = customAuth;
     _userService = userService;
 }
Пример #2
0
 public TransactionController(ITransactionServices tranService, ICustomAuthorization customAuth)
 {
     _customAuth  = customAuth;
     _tranService = tranService;
 }
 public BankingDetailsController(IBankingDetailsServices bankingDetailsServices, ICustomAuthorization customAuth)
 {
     _customAuth             = customAuth;
     _bankingDetailsServices = bankingDetailsServices;
 }