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

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

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

            return(Ok(listToReturn));
        }