VendorDetailModel Looks Like this
public class VendorDetailModel()
{
public VendorDetailModel()
{
vendorRatingModel = new List();
}
public List vendorRatingModel{ get; set; }
}
public class VendorRatingModel
{
public int Count { get; set; }
public int Rating { get; set; }
}
{
public int Count { get; set; }
public int Rating { get; set; }
}
What is The Problem in service query is getting proper data but in controller it is vendorRating is null as shown


Siddhartha SharmaPosted May 19, 2019, 10:30 AM
Jignesh KumarPosted May 18, 2019, 11:50 PM