Beispiel #1
0
 public void Remove(int id)
 {
     foreach (Award aw in awardsDAO.GetList())
     {
         if (id == aw.AwardId)
         {
             awardsDAO.Remove(aw);
         }
     }
 }
Beispiel #2
0
 public List <Award> GetList()
 {
     return(awardsDAO.GetList());
 }
Beispiel #3
0
 public IEnumerable <Award> GetList()
 {
     return(awardsDAO.GetList());
 }