public IHttpActionResult DeleteRepairSheet(int id)
 {
     if (id == null)
     {
         return(BadRequest());
     }
     repairService.DeleteRepairSheet(id);
     return(Ok("Service sheeet deleted! "));
 }