narsil/Tanshu.Accounts.Repository/LocationBI.cs

16 lines
362 B
C#
Raw Permalink Normal View History

2018-08-24 10:41:33 +00:00
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);
}
}
}