Example #1
0
 public List <DetailsVM> GetDetailsBySubcategory(int subCatID)
 {
     para = new SqlParameter[]
     {
         new SqlParameter("@SubCategoryID", subCatID)
     };
     return(obj.ReturnListFromParameters <DetailsVM>("spGetDetailsBySubcategory", para));
 }