Ejemplo n.º 1
0
        public void GetShoppingDetailsByShippingPaymentID()
        {
            IEnumerable <HCRGUniversity.Core.Data.Model.EducationShoppingCart> res = _educationShoppingTempRepository.GetShoppingDetailsByShippingPaymentID(510);//_educationBL.getAllEducationActive();

            Assert.IsTrue(res != null, "Unable to get");
        }
 public IEnumerable <DLModel.EducationShoppingCart> GetShoppingDetailsByShippingPaymentID(int _shippingPaymentID)
 {
     return(_educationShoppingTempRepository.GetShoppingDetailsByShippingPaymentID(_shippingPaymentID).ToList());
 }