Ejemplo n.º 1
0
 //tODO : add account service
 public AccountController(AccountApi.Contracts.IAccountService accountService)
 {
     this._accountService = accountService;
 }
 public AccountController(ILogger <AccountController> logger, Contracts.IAccountService service)
 {
     _logger  = logger;
     _service = service;
 }