Mineplex2018-withcommit/Website/LOC.Core/Data/IRestCallJsonWrapper.cs

11 lines
310 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Core.Data
{
using System;
public interface IRestCallJsonWrapper
{
T MakeCall<T>(object data, Uri uri, RestCallType restCallType, double timeoutInSeconds = 100);
void MakeCall(object data, Uri uri, RestCallType restCallType, double timeoutInSeconds = 100);
}
}