Diff. between GetDetails & GetDetailsRow
In the News Management module, in the Data Tier there's these two methods:
NewsManager.Business.News.GetDetails(intNewsID)
and
NewsManager.Business.News.GetDetailsRow(intNewsID)
They both return a news item, but the first method returns it as a NewsDetails class, and the 2nd returns a DataRow.
What is the purpose of having both methods? Only one is used in the code, I forget which one.
|