mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
23 lines
423 B
C#
23 lines
423 B
C#
using Borepin.Service;
|
|
using FabAccessAPI;
|
|
|
|
namespace Borepin.iOS.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;
|
|
}
|
|
}
|
|
} |