Created
March 6, 2018 23:02
-
-
Save thiagoloureiro/12830a2168e2dfbbd3978dcf32a479e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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