Пример #1
0
 public HomeController(
     LoginServicce.LoginServicceClient login,
     CustomerServicce.CustomerServicceClient customer)
 {
     _login    = login;
     _customer = customer;
 }
Пример #2
0
 public AuthController(IAuthService authService, CustomerServicce.CustomerServicceClient customer)
 {
     _authService = authService;
     _customer    = customer;
 }
Пример #3
0
 public LoginService(ILogger <LoginService> logger, CustomerServicce.CustomerServicceClient customer)
 {
     _logger   = logger;
     _customer = customer;
 }