Ejemplo n.º 1
0
        public override void Execute(IActionContext context)
        {
            SendResourcesDialog dlg = new SendResourcesDialog(context.SelectedResources);

            dlg.ShowDialog();
            dlg.Dispose();
        }
Ejemplo n.º 2
0
        public override void Execute(IActionContext context)
        {
            IResource res = context.SelectedResources[0];

            res = res.GetLinkProp(Core.ContactManager.Props.LinkBaseContact);

            SendResourcesDialog dlg = new SendResourcesDialog(res.ToResourceList());

            dlg.ShowDialog();
            dlg.Dispose();
        }