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