Beispiel #1
0
 public static bool DelSinger(int id, int idSinger)
 {
     return(SingerMusicDAO.DelSinger(id, idSinger));
 }
Beispiel #2
0
 public static IEnumerable <SingerMusic> GetSMByID(int id)
 {
     return(SingerMusicDAO.GetSMByID(id));
 }
Beispiel #3
0
 public static bool DelSM(int id)
 {
     return(SingerMusicDAO.DelSM(id));
 }
Beispiel #4
0
 public static bool CreateSM(SingerMusic sm)
 {
     return(SingerMusicDAO.CreateSM(sm));
 }