示例#1
0
 public ICollection <Artist> GetAll()
 {
     return(_artistDAL.GetAll());
 }
示例#2
0
 public ICollection <Artist> GetAll()
 {
     return(artistDAL.GetAll(a => a.IsActive));
 }