Пример #1
0
 public List <ClsTrackAndBeatDetails> GetTrackAndBeatDetails(Int64 UserID, Int64 TrackID)
 {
     using (ClsTrack_DAL obj = new ClsTrack_DAL())
     {
         return(obj.GetTrackAndBeatDetails(UserID, TrackID));
     }
 }
Пример #2
0
 public List <ClsTrackAndBeatList> GetTrackAndBeatList(Int64 UserID, int StartCount, int EndCount)
 {
     using (ClsTrack_DAL obj = new ClsTrack_DAL())
     {
         return(obj.GetTrackAndBeatList(UserID, StartCount, EndCount));
     }
 }
Пример #3
0
 public List <ClsFeaturedTrack> GetFeaturedTrackList(Int64 UserID, int StartCount, int EndCount)
 {
     using (ClsTrack_DAL obj = new ClsTrack_DAL())
     {
         return(obj.GetFeaturedTrackList(UserID, StartCount, EndCount));
     }
 }