Esempio 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;
     }
 }
Esempio 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);
     }
 }
Esempio 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;
     }
 }
Esempio 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);
     }
 }
Esempio 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;
     }
 }
Esempio 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;
     }
 }
Esempio n. 7
0
 private void OnProjectsLookupSync(object sender, Microsoft.SharePoint.Linq.AssociationChangedEventArgs <Item> e)
 {
 }