// All properties on this model are strings just to simplify this question.
public string FindProperty(Guid key, string propertyName)
{
var dbModel = kycRepo.KycExtraInformationRepo.Get(key);
var prop = dbModel.GetType().GetProperty(propertyName);
return prop.GetValue(dbModel, null);
}
// All properties on this model are strings just to simplify this question.
public string FindProperty(Guid key, string propertyName)
{
var dbModel = kycRepo.KycExtraInformationRepo.Get(key);
var prop = dbModel.GetType().GetProperty(propertyName);
return prop.GetValue(dbModel, null);
}