Ejemplo n.º 1
0
 private void OnListaDeRespostasItem0Sync(object sender, Microsoft.SharePoint.Linq.AssociationChangedEventArgs <ListaDeRespostasItem> e)
 {
     if ((Microsoft.SharePoint.Linq.AssociationChangedState.Added == e.State))
     {
         e.Item.RespostaCerta = this;
     }
     else
     {
         e.Item.RespostaCerta = null;
     }
 }
Ejemplo n.º 2
0
 private void OnPerguntaSync(object sender, Microsoft.SharePoint.Linq.AssociationChangedEventArgs <PerguntasItem> e)
 {
     if ((Microsoft.SharePoint.Linq.AssociationChangedState.Added == e.State))
     {
         e.Item.RespostasItem.Add(this);
     }
     else
     {
         e.Item.RespostasItem.Remove(this);
     }
 }
Ejemplo n.º 3
0
 private void OnPerguntasItemSync(object sender, Microsoft.SharePoint.Linq.AssociationChangedEventArgs <PerguntasItem> e)
 {
     if ((Microsoft.SharePoint.Linq.AssociationChangedState.Added == e.State))
     {
         e.Item.Enquete = this;
     }
     else
     {
         e.Item.Enquete = null;
     }
 }
Ejemplo n.º 4
0
 private void OnEmployeeInProjectSync(object sender, Microsoft.SharePoint.Linq.AssociationChangedEventArgs <EmployeesItem> e)
 {
     if ((Microsoft.SharePoint.Linq.AssociationChangedState.Added == e.State))
     {
         e.Item.ProjectsItem.Add(this);
     }
     else
     {
         e.Item.ProjectsItem.Remove(this);
     }
 }
Ejemplo n.º 5
0
 private void OnEmployeesItemSync(object sender, Microsoft.SharePoint.Linq.AssociationChangedEventArgs <EmployeesItem> e)
 {
     if ((Microsoft.SharePoint.Linq.AssociationChangedState.Added == e.State))
     {
         e.Item.CurrentLocation = this;
     }
     else
     {
         e.Item.CurrentLocation = null;
     }
 }
Ejemplo n.º 6
0
 private void OnProjectsItemSync(object sender, Microsoft.SharePoint.Linq.AssociationChangedEventArgs <ProjectsItem> e)
 {
     if ((Microsoft.SharePoint.Linq.AssociationChangedState.Added == e.State))
     {
         e.Item.EmployeeInProject = this;
     }
     else
     {
         e.Item.EmployeeInProject = null;
     }
 }
Ejemplo n.º 7
0
 private void OnProjectsLookupSync(object sender, Microsoft.SharePoint.Linq.AssociationChangedEventArgs <Item> e)
 {
 }