public IHttpActionResult GetByInactive()
        {
            PersonnelService personnelService = CreatePersonnelService();
            var personnelById = personnelService.GetInactivePersonnel();

            return(Ok(personnelById));
        }