Skip to content

Instantly share code, notes, and snippets.

@thiagoloureiro
Created March 6, 2018 23:02
Show Gist options
  • Save thiagoloureiro/12830a2168e2dfbbd3978dcf32a479e1 to your computer and use it in GitHub Desktop.
Save thiagoloureiro/12830a2168e2dfbbd3978dcf32a479e1 to your computer and use it in GitHub Desktop.
using System.Threading.Tasks;
using Orleans;
namespace ConverterContracts
{
/// <summary>
/// Grain interface IConverter
/// </summary>
public interface IConverter : IGrainWithGuidKey
{
Task<double> ConvertToMile(double value);
Task<double> ConvertToKm(double value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment