public async Task <GDVehicleDetailsInformationModel> GetVehicleDetailsInformationByGDId(int id)
        {
            GDVehicleDetailsInformationModel model = new GDVehicleDetailsInformationModel
            {
                gDInformation          = await lostAndFoundService.GetGDInformationById(id),
                vehicleInformation     = await lostAndFoundService.GetVehicleInformationByGDId(id),
                otherPersonInformation = await lostAndFoundService.GetOtherPersonInformationByGDId(id),
                indentifyInfo          = await lostAndFoundService.GetIndentifyInfoByGDId(id),
                spaceAndTime           = await lostAndFoundService.GetSpaceAndTimeByGDId(id),
            };

            return(model);
        }