public IHttpActionResult GetPartTypesSourceAPI(string customer, string project, string productphase)
        {
            var EnumEntity = EventReportManagerService.GetAllPartTypes(customer, project, productphase);

            return(Ok(EnumEntity));
        }