Пример #1
0
 public IList <KeyValuePair <string, string> > GetValues()
 {
     return(new List <KeyValuePair <string, string> >()
     {
         new KeyValuePair <string, string>("PickList No", PickListNo),
         new KeyValuePair <string, string>("Carton No", CartonNo.ToString()),
         new KeyValuePair <string, string>("Bar Code", Barcode),
         new KeyValuePair <string, string>("Location Code", LocationCode),
         new KeyValuePair <string, string>("WareHouse Code", WareHouseCode),
         new KeyValuePair <string, string>("Last SentDevice Id", LastSentDeviceId),
         new KeyValuePair <string, string>("Assigned User", AssignedUser),
         new KeyValuePair <string, string>("Request No", RequestNo),
         new KeyValuePair <string, string>("Picked User", PickedUser),
         new KeyValuePair <string, string>("IsPicked", IsPicked.ToString()),
         new KeyValuePair <string, string>("Pick Date", PickDate.ToString()),
         new KeyValuePair <string, string>("Deleted", Deleted.ToString()),
         new KeyValuePair <string, string>("Created User", CreatedUser),
         new KeyValuePair <string, string>("Created Date", CreatedDate),
         new KeyValuePair <string, string>("Lu User", LuUser.ToString()),
         new KeyValuePair <string, string>("Lu Date", LuDate)
     });
 }
        public void OnDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth)
        {
            var selectedDate = new DateTime(year, monthOfYear + 1, dayOfMonth);

            PickDate?.Invoke(selectedDate, null);
        }
 public void OnDateSet(DatePicker view, int year, int month, int dayOfMonth)
 {
     PickDate?.Invoke(new DateTime(year, month + 1, dayOfMonth), null);
 }