|
@@ -192,7 +192,11 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
if (listVal != null && listVal.Count > 0)
|
|
|
{
|
|
|
- contnet.IsSelected = bool.TryParse(CommonFun.GetValueOrDefault(listVal,0), out _);
|
|
|
+ if (bool.TryParse(CommonFun.GetValueOrDefault(listVal, 0), out bool val))
|
|
|
+ {
|
|
|
+ contnet.IsSelected = val;
|
|
|
+ }
|
|
|
+
|
|
|
contnet.ProjectedDate = CommonFun.GetValueOrDefault(listVal, 1);
|
|
|
}
|
|
|
}
|