16 lines
362 B
C#
16 lines
362 B
C#
|
using RestSharp;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Repository
|
|||
|
{
|
|||
|
public static class LocationBI
|
|||
|
{
|
|||
|
public static IList<string> List()
|
|||
|
{
|
|||
|
var request = new RestRequest();
|
|||
|
request.Resource = "Locations.json";
|
|||
|
return JsonStore.Execute<List<string>>(request);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|