auto-creamapi-2/auto-creamapi/Core/App.cs
Jeddunk 73baa27245 SearchResultView and DownloadView implemented;
Ignore whitespaces and special chars when looking for games;
2020-12-28 15:27:37 +01:00

20 lines
493 B
C#

using auto_creamapi.ViewModels;
using MvvmCross.IoC;
using MvvmCross.ViewModels;
namespace auto_creamapi.Core
{
public class App : MvxApplication
{
public override void Initialize()
{
//Mvx.IoCProvider.RegisterType<ICacheService, CacheService>();
CreatableTypes()
.EndingWith("Service")
.AsInterfaces()
.RegisterAsLazySingleton();
RegisterAppStart<MainViewModel>();
}
}
}