public ICollection <Comment> GetAll() { return(_dal.GetAll()); }
public List <Comment> GetAll() { return(_commentDAL.GetAll().ToList()); }
public IDataResult <ICollection <Comment> > GetAll() { return(new SuccessDataResult <ICollection <Comment> >(commentDAL.GetAll(a => a.IsActive == true))); }
public ICollection <Comment> GetAll() { return(_commentDAL.GetAll()); }