public ActionResult SalesMonthly()
        {
            SalesLogic logic = new SalesLogic();

            List <Sales_Monthly> salesMonthly = new List <Sales_Monthly>();

            salesMonthly = logic.getDetails_Sales_Monthly();


            return(View(salesMonthly));
        }