Ejemplo n.º 1
0
 public OpenSolutionDialog(XrmRecordService xrmRecordService, XrmPackageSettings xrmPackageSettings, IDialogController controller)
     : base(xrmRecordService, controller)
 {
     XrmPackageSettings = xrmPackageSettings;
 }
        public ManagePluginTriggersDialog(IDialogController dialogController, IVisualStudioService visualStudioService, XrmRecordService xrmRecordService, XrmPackageSettings packageSettings)
            : base(dialogController)
        {
            PackageSettings     = packageSettings;
            VisualStudioService = visualStudioService;
            XrmRecordService    = xrmRecordService;

            var configEntryDialog = new ObjectGetEntryDialog(() => EntryObject, this, ApplicationController, XrmRecordService);

            SubDialogs = new DialogViewModel[] { configEntryDialog };
        }
Ejemplo n.º 3
0
 public ManagePluginTriggersDialog(ManagePluginTriggersService service, IDialogController dialogController, IVisualStudioService visualStudioService, XrmRecordService xrmRecordService, XrmPackageSettings packageSettings)
     : base(service, dialogController, lookupService: xrmRecordService, nextButtonLabel: "Save")
 {
     PackageSettings     = packageSettings;
     VisualStudioService = visualStudioService;
     XrmRecordService    = xrmRecordService;
 }
 public DeployAssemblyDialog(DeployAssemblyService service, IDialogController dialogController, IVisualStudioService visualStudioService, XrmRecordService xrmRecordService, XrmPackageSettings packageSettings)
     : base(service, dialogController, null, nextButtonLabel: "Deploy")
 {
     VisualStudioService = visualStudioService;
     PackageSettings     = packageSettings;
     XrmRecordService    = xrmRecordService;
 }
 public UpdateAssemblyDialog(IDialogController dialogController, IVisualStudioService visualStudioService, XrmRecordService xrmRecordService, XrmPackageSettings packageSettings)
     : base(dialogController)
 {
     VisualStudioService = visualStudioService;
     Service             = xrmRecordService;
     PackageSettings     = packageSettings;
 }
Ejemplo n.º 6
0
 public DeployIntoFieldService(XrmRecordService service, XrmPackageSettings packageSettings)
 {
     Service         = service;
     PackageSettings = packageSettings;
 }
Ejemplo n.º 7
0
 public VsixCreatePackageDialog(CreatePackageService service, IDialogController dialogController, XrmRecordService xrmRecordService, IVisualStudioService visualStudioService, XrmPackageSettings xrmPackageSettings)
     : base(service, dialogController, xrmRecordService)
 {
     VisualStudioService = visualStudioService;
     XrmPackageSettings  = xrmPackageSettings;
 }
Ejemplo n.º 8
0
 public VsixCustomisationImportDialog(XrmCustomisationImportService service, IDialogController dialogController, XrmPackageSettings xrmPackageSettings, XrmRecordService lookupService)
     : base(service, dialogController, lookupService)
 {
 }