コード例 #1
0
 public PairNewVehicleViewModel(IRepository repo, IUserSettings user, IWebSevices web,
                                IConnection connect, IDialogService dia, IBluetoothDevices blue)
 {
     repoService      = repo;
     userService      = user;
     webService       = web;
     connectService   = connect;
     diaService       = dia;
     bluetoothService = blue;
 }
コード例 #2
0
 public MyProfileViewModel(IUserSettings user, IConnection connect, IRepository repo, IWebSevices web,
                           IBluetoothDevices blue, IDialogService dia)
 {
     userService      = user;
     connectService   = connect;
     repoService      = repo;
     webService       = web;
     bluetoothService = blue;
     diaService       = dia;
 }