public MusicType FindMusicType(byte musicTypeIdentifier) { MusicType musicType = null; musicType = MusicTypeDao.Find(musicTypeIdentifier); return(musicType); }
public List <MusicType> GetMusicTypes() { List <MusicType> types = MusicTypeDao.GetMusicTypes(); return(types); }