Emmmanuel FIADUFE

Emmmanuel FIADUFE

  • 791
  • 1.1k
  • 53.7k

Count Daily sales on dashborad

Oct 30 2023 1:30 PM

Hello Team,

Please I want to show daily sales on my mvc application dashboard by date, kindly assist

public JsonResult GetDashboardData()
        {
            ASPNETMASTERPOSTEntities db = new ASPNETMASTERPOSTEntities();
             var currentDate = DateTime.Now.Date.ToString("dd-MMM-yyyy");
          
            return Json(JsonRequestBehavior.AllowGet);
        }


Answers (5)