Dotnet
Update User

Exercise - Implement Interface

PRO
Outline

Exercise: Add UpdateLoggedInUserAsync Method

In the Conduit.Repositories Project

Modify IAccountRepository.cs by adding the following Method Signatures:
  • Name: UpdateLoggedInUserAsync
  • Return Type: User
  • Parameters: UpdateUser
Modify AccountRepository.cs by Implementing the IAccountRepository Interface
  • Hover over the error on IAccountRepository
  • Select [Show Potential Fixes]
  • Select [Implement interface]

We'll come back and implement that method after we complete the other exercises.

 

I finished! On to the next chapter