Got it resolved.
Everything done thus far was correct, I just had to this (below) to the
private IAccountService accountService;
Everything done thus far was correct, I just had to this (below) to the
private IAccountService accountService;
[Dependency]
public IAccountService AccountService
{
get { return accountService; }
set { accountService = value; }
}
Good luck !