mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-12-23 07:36:31 +01:00
16 lines
527 B
C#
16 lines
527 B
C#
|
using Serilog;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace TINK.View.MasterDetail
|
|||
|
{
|
|||
|
public class EmptyNavigationMasterDetail : INavigationMasterDetail
|
|||
|
{
|
|||
|
public bool IsGestureEnabled { set => Log.ForContext<EmptyNavigationMasterDetail>().Error($"Unexpected call of {nameof(IsGestureEnabled)} detected."); }
|
|||
|
|
|||
|
public void ShowPage(Type p_oTypeOfPage, string p_strTitle = null)
|
|||
|
{
|
|||
|
Log.ForContext<EmptyNavigationMasterDetail>().Error($"Unexpected call of {nameof(ShowPage)} detected.");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|