public IEnumerable <DroneViewModel> GetAll()
        {
            var items = _droneService.GetAll();

            return(items);
        }