Broadening notifications for cancelled TECNs

This commit is contained in:
Chase Tucker
2023-10-31 09:06:19 -07:00
parent 0289e62e9f
commit 5d701ded55
3 changed files with 19 additions and 2 deletions

View File

@ -598,6 +598,13 @@ namespace Fab2ApprovalSystem.DMO
var approverList = this.db.Query<ApprovalLogHistory>("ECNGetECNApprovalLogHistory", parameters, commandType: CommandType.StoredProcedure).ToList();
return approverList;
}
public IEnumerable<int> GetTECNNotificationUsers()
{
string sql = "select T.UserId from TECNNotificationsUsers T";
var result = this.db.Query<int>(sql).ToList();
return result;
}