public static object Kurtosis([ExcelArgument(Description = "The hash of a valid Sample object", Name = "Sample")] string hash) { return(Run(() => SampleLogic.Kurtosis(hash))); }
public static object KurtosisAsync([ExcelArgument(Description = "The hash of a valid Sample object", Name = "Sample")] string hash) { return(RunAsync(() => SampleLogic.Kurtosis(hash), "Lloyds.Async.Sample.Kurtosis")); }