Ejemplo n.º 1
0
 partial void DeleteNotificacao(Notificacao instance);
Ejemplo n.º 2
0
 partial void UpdateNotificacao(Notificacao instance);
Ejemplo n.º 3
0
 partial void InsertNotificacao(Notificacao instance);
Ejemplo n.º 4
0
		private void detach_Notificacao(Notificacao entity)
		{
			this.SendPropertyChanging();
			entity.Tipo1 = null;
		}
Ejemplo n.º 5
0
		private void attach_Notificacao(Notificacao entity)
		{
			this.SendPropertyChanging();
			entity.Tipo1 = this;
		}
Ejemplo 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();
 }