PageRenderTime 43ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/Services/IFunctionCalculator.cs

#
C# | 7 lines | 6 code | 1 blank | 0 comment | 0 complexity | 20df318468cb4fbb004899fa90173187 MD5 | raw file
  1. using Orchard;
  2. namespace Contrib.Voting.Services {
  3. public interface IFunctionCalculator : IDependency {
  4. void Calculate(Calculus calculus);
  5. }
  6. }