private async void ItemTappedCommandRecieverAsync(SearchPalletResponseModel model)
 {
     try
     {
         await _navigationService.NavigateAsync("PalletizeDetailView", new NavigationParameters
         {
             { "model", model }
         }, animated : false);
     }
     catch (Exception ex)
     {
         Crashes.TrackError(ex);
     }
 }
        internal async void AssingIntialValueAsync(SearchPalletResponseModel model, bool v)
        {
            try
            {
                var manifest = await _moveService.GetManifestAsync(AppSettings.SessionId, model.Barcode);

                Model           = model;
                IsFromDashboard = v;
                ManifestId      = model.Barcode;
                PartnerTypeName = model.OwnerName;
                StockLocation   = model.LocationName;
                TargetLocation  = model.LocationName;
                ShippingDate    = model.BuildDate.Date;
                ItemCount       = (int)model.BuildCount;
                Barcodes        = new List <string> {
                    model.Barcode
                };
            }
            catch (Exception ex)
            {
                Crashes.TrackError(ex);
            }
        }