Dotnet
Current User

Exercise - IAccountRepository Add Method Signatures

PRO
Outline

Exercise: Add Interface Method Signatures

In the Conduit.Repositories Project

Modify IAccountRepository.cs by adding the following 2 Method Signatures:
  • Method Signature #1
    • Name: GetCurrentUserAsync
    • Return Type: User
    • Parameters: n/a
  • Method Signature #2
    • Name: GetLoggedInUser
    • Return Type: Account
    • Parameters: n/a
 

I finished! On to the next chapter