public IHttpActionResult GetDailyVersionAPI(string customer, string project, string productphase, string parttypes, DateTime referenceDay)
        {
            var EnumEntity = EventReportManagerService.GetVersion(customer, project, productphase, parttypes, referenceDay);

            return(Ok(EnumEntity));
        }