public async Task <IEnumerable <VehicleInformation> > GetVehicleInformationBySearching(int?vehicleTypeId, int?brandId, string modelNo, string regiNo, string engineNo, string chesisNo, string cc, int?colorId, string userName)
        {
            var user = await _userManager.FindByNameAsync(userName);

            var result = await lostAndFoundService.GetVehicleInformationBySearching(vehicleTypeId, brandId, modelNo, regiNo, engineNo, chesisNo, cc, colorId, user.Id);

            return(result);
        }