using MvvmAppCore.Interfaces; namespace MvvmAppCore.ViewModels { public class IocPageViewModel : SamplePageViewModel { public string MyName { get; set; } public IocPageViewModel(IDemoService demoService) : base(demoService) { MyName = "Ioc"; } } }