public IActionResult GetSalesDailyReportLastMonth([FromQuery] int?branchId)
        {
            // Set the filter to "LastMonth"
            var filter = new SalesDailyReportFilterDto();

            filter.SetLastMonth();
            filter.BranchId = branchId;

            // Return to response
            var listToReturn = GetSalesDailyReport(filter);

            return(Ok(listToReturn));
        }