Adding a simple Service
namespace MvvmCrossDemo.Core.Services
{
public interface IGreetingService
{
string GetGreetingText(string name);
}
}namespace MvvmCrossDemo.Core.Services
{
public class GreetingService: IGreetingService
{
public string GetGreetingText(string name)
{
return $"Hello World, {name}.";
}
}
}Last updated