示例#1
0
 public AskForUserDelyvery(ManagerDispatchMob managerDispatchMob, string idShip, InitDasbordDelegate initDasbordDelegate, string OnDeliveryToCarrier, string totalPaymentToCarrier,
                           VehiclwInformation vehiclwInformation, GetShiping getShiping, GetVechicleDelegate getVechicleDelegate, bool isproplem)
 {
     askForUsersDelyveryMW = new AskForUsersDelyveryMW(managerDispatchMob, idShip, Navigation, getShiping, initDasbordDelegate, getVechicleDelegate, vehiclwInformation, totalPaymentToCarrier);
     askForUsersDelyveryMW.AskForUserDelyveryM = new AskForUserDelyveryM();
     InitializeComponent();
     BindingContext = askForUsersDelyveryMW;
     InitElemnt(isproplem);
     InitPayment(OnDeliveryToCarrier, totalPaymentToCarrier);
 }
示例#2
0
 public AskDelyveryMV(ManagerDispatchMob managerDispatchMob, VehiclwInformation vehiclwInformation, string idShip, INavigation navigation, GetShiping getShiping,
                      InitDasbordDelegate initDasbordDelegate, GetVechicleDelegate getVechicleDelegate, string onDeliveryToCarrier, string totalPaymentToCarrier)
 {
     this.getVechicleDelegate = getVechicleDelegate;
     this.getShiping          = getShiping;
     this.initDasbordDelegate = initDasbordDelegate;
     this.managerDispatchMob  = managerDispatchMob;
     Navigation            = navigation;
     VehiclwInformation    = vehiclwInformation;
     IdShip                = idShip;
     OnDeliveryToCarrier   = onDeliveryToCarrier;
     TotalPaymentToCarrier = totalPaymentToCarrier;
 }
示例#3
0
 public InfoOrderMV(ManagerDispatchMob managerDispatchMob, InitDasbordDelegate initDasbordDelegate, string statusInspection, string idShipping)
 {
     this.initDasbordDelegate = initDasbordDelegate;
     this.managerDispatchMob  = managerDispatchMob;
     Shipping              = shipping;
     getVechicleDelegate   = GetVehiclwInformations;
     GetShiping            = GetShipings;
     StatusInspection      = statusInspection;
     IdShipping            = idShipping;
     ToInstructionComand   = new DelegateCommand(ToInstruction);
     ToEditPikedUpCommand  = new DelegateCommand(ToEditPikedUp);
     ToEditDeliveryCommand = new DelegateCommand(ToEditDelivery);
     ToPaymentCommand      = new DelegateCommand(ToEditPayment);
     Init();
 }
示例#4
0
 public AskForUsersDelyveryMW(ManagerDispatchMob managerDispatchMob, string idShip, INavigation navigation, GetShiping getShiping, InitDasbordDelegate initDasbordDelegate,
                              GetVechicleDelegate getVechicleDelegate, VehiclwInformation vehiclwInformation, string totalPaymentToCarrier, string paymmant = null)
 {
     this.initDasbordDelegate = initDasbordDelegate;
     this.getVechicleDelegate = getVechicleDelegate;
     this.getShiping          = getShiping;
     this.managerDispatchMob  = managerDispatchMob;
     Navigation            = navigation;
     VehiclwInformation    = vehiclwInformation;
     IdShip                = idShip;
     TotalPaymentToCarrier = totalPaymentToCarrier;
     GoToFeedBackCommand   = new DelegateCommand(GoToFeedBack);
     if (paymmant != null)
     {
         Payment = paymmant;
     }
 }
 public ClientStart(ManagerDispatchMob managerDispatchMob, string idShip, InitDasbordDelegate initDasbordDelegate, string onDeliveryToCarrier, string totalPaymentToCarrier, VehiclwInformation vehiclwInformation, GetShiping getShiping, GetVechicleDelegate getVechicleDelegate, bool isproplem)
 {
     askForUserDelyvery = new AskForUserDelyvery(managerDispatchMob, idShip, initDasbordDelegate, onDeliveryToCarrier, totalPaymentToCarrier, vehiclwInformation, getShiping, getVechicleDelegate, isproplem);
     InitializeComponent();
 }
示例#6
0
 public AskPageDelyvery(ManagerDispatchMob managerDispatchMob, VehiclwInformation vehiclwInformation, string idShip, InitDasbordDelegate initDasbordDelegate, GetVechicleDelegate getVechicleDelegate,
                        string onDeliveryToCarrier, string totalPaymentToCarrier, GetShiping getShiping)
 {
     askDelyveryMV             = new AskDelyveryMV(managerDispatchMob, vehiclwInformation, idShip, Navigation, getShiping, initDasbordDelegate, getVechicleDelegate, onDeliveryToCarrier, totalPaymentToCarrier);
     askDelyveryMV.AskDelyvery = new AskDelyvery();
     InitializeComponent();
     BindingContext = askDelyveryMV;
     InitAsk();
 }