LSFE/LSFE.MobApp/Helpers/ServiceHelper.cs
2026-07-30 10:31:04 +08:00

16 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.MobApp.Helpers
{
public static class ServiceHelper
{
public static T GetService<T>() => Current.GetService<T>();
public static IServiceProvider Current =>
Application.Current.Handler.MauiContext.Services;
}
}