Broadening notifications for cancelled TECNs
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user