Add sample code for chapter 5

This commit is contained in:
Alvin Ashcraft
2023-06-10 09:00:29 -04:00
parent edbc96830c
commit 370d8a52b8
60 changed files with 2202 additions and 0 deletions
@@ -0,0 +1,12 @@
using System;
namespace MyMediaCollection.Interfaces
{
public interface INavigationService
{
string CurrentPage { get; }
void NavigateTo(string page);
void NavigateTo(string page, object parameter);
void GoBack();
}
}