我有以下代码,其中有一些我无法解决的错误。如果用户有权访问,我正在尝试向 a 添加值List,然后返回该List.
notificationsList当我尝试归还它时,红线出现在下面。
但我不确定我一开始是否做对了。
public ActionResult GetUserNotificationOptions() {
List<NotificationOption> notificationsList = new List<NotificationOption>();
if(UserAccountHandler.GetIsAuthorised(_db, RestrictedArea.Audits))
{
notificationsList.Add(NotificationOption.NewAudits);
}
if (UserAccountHandler.GetIsAuthorised(_db, RestrictedArea.Overview))
{
notificationsList.Add(NotificationOption.SiginificentDeviationInScore);
}
if (UserAccountHandler.GetIsAuthorised(_db, RestrictedArea.Action))
{
notificationsList.Add(NotificationOption.OutstandingActions);
}
return notificationsList;
}
三国纷争
心有法竹
BIG阳
相关分类