public ActionResult <Device> Post(Device device)
 {
     _devicesService.Create(device);
     return(device);
 }