mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
24 lines
424 B
C#
24 lines
424 B
C#
|
using Borepin.Service;
|
|||
|
using FabAccessAPI;
|
|||
|
|
|||
|
namespace Borepin.UWP.Services
|
|||
|
{
|
|||
|
public class APIService : IAPIService
|
|||
|
{
|
|||
|
#region Private Members
|
|||
|
private readonly IAPI _API;
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Constructors
|
|||
|
public APIService()
|
|||
|
{
|
|||
|
_API = new API();
|
|||
|
}
|
|||
|
#endregion
|
|||
|
public IAPI GetAPI()
|
|||
|
{
|
|||
|
return _API;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|