Esempio n. 1
0
 partial void DeleteNotificacao(Notificacao instance);
Esempio n. 2
0
 partial void UpdateNotificacao(Notificacao instance);
Esempio n. 3
0
 partial void InsertNotificacao(Notificacao instance);
Esempio n. 4
0
		private void detach_Notificacao(Notificacao entity)
		{
			this.SendPropertyChanging();
			entity.Tipo1 = null;
		}
Esempio n. 5
0
		private void attach_Notificacao(Notificacao entity)
		{
			this.SendPropertyChanging();
			entity.Tipo1 = this;
		}
Esempio n. 6
0
 public Tipo listarTipoID(Notificacao n)
 {
     var qry = from t in contexto.Tipo where t.idTipo == n.Tipo select t;
     return qry.Single();
 }