Can I using API restful to EvaluateRule without send ruleData, I want send objectVM in post API and loop in list of rules, without pass ruleData in API
[HttpPost]
public ActionResult EvaluateRule(Patient patient)
{
var list=StorageService.GetEvaluationRules();
foreach (var item in list)
{
// I missing (string ruleData) to
}
}