예제 #1
0
        public IEnumerable <Tag> GetAll()
        {
            ITagDAL    dal  = TagFactory.GetTagDAL();
            List <Tag> tags = dal.GetAll();

            return(tags);
        }
예제 #2
0
 public ICollection <Tag> GetAll()
 {
     return(_tagDAL.GetAll());
 }