2016-05-06 07:17:38 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Bit.App.Abstractions;
|
|
|
|
|
using Bit.App.Models.Api;
|
|
|
|
|
using Newtonsoft.Json;
|
2016-07-02 01:54:00 +03:00
|
|
|
|
using Plugin.Connectivity.Abstractions;
|
2016-05-06 07:17:38 +03:00
|
|
|
|
|
|
|
|
|
namespace Bit.App.Repositories
|
|
|
|
|
{
|
|
|
|
|
public class SiteApiRepository : ApiRepository<SiteRequest, SiteResponse, string>, ISiteApiRepository
|
|
|
|
|
{
|
2016-07-02 01:54:00 +03:00
|
|
|
|
public SiteApiRepository(IConnectivity connectivity)
|
|
|
|
|
: base(connectivity)
|
|
|
|
|
{ }
|
|
|
|
|
|
2016-05-06 07:17:38 +03:00
|
|
|
|
protected override string ApiRoute => "sites";
|
|
|
|
|
}
|
|
|
|
|
}
|