Exemplo n.º 1
0
 void ParseGetNote(GetNote data)
 {
     if (data != null)
     {
         Log.d("GetNote", data.ToString());
     }
 }
 private void Note_Click(object sender, RoutedEventArgs e)
 {
     if (assemblyInfo == null)
         return;
     GetNote popup = new GetNote(vm);
     popup.ShowDialog();
     if (vm.Note == null || vm.Note.Count() == 0)
         return;
     vm.AddNote(assemblyInfo.CustomerID, vm.Note);
     CustomerNote.Text = vm.Note;
     CustomerNote.Visibility = Visibility.Visible;
 }
Exemplo n.º 3
0
        private void Note_Click(object sender, RoutedEventArgs e)
        {
            GetNote popup = new GetNote(vm);

            popup.ShowDialog();
            if (vm.Note == null || vm.Note.Count() == 0)
            {
                return;
            }
            vm.AddNote(Barcode.Text, vm.Note);
            NoteText.Text      = vm.Note;
            NoteBox.Visibility = Visibility.Visible;
        }
Exemplo n.º 4
0
 public object Get(GetNote request)
 {
     return(Db.SingleById <Note>(request.Id));
 }