public IHttpActionResult UpdateAlarmTesting(AlarmTestingViewModel model)
 {
     SecurityService.UpdateAlarmTesting(model.ToServiceRequestModel());
     return(Ok());
 }
 public IHttpActionResult GetTestTypes(AlarmTestingViewModel model)
 {
     return(Ok(SecurityService.GetTestTypes(model.ToServiceRequestModel())));
 }