Ejemplo n.º 1
0
 public NotifyEntity(ETipoNotificacion tipo, ETipoEntidad tipoEntidad, int count, decimal total, string title, object list, bool checkedItem, bool setTotal)
 {
     ETipoNotificacion = tipo;
     ETipoEntidad      = tipoEntidad;
     Count             = count;
     Total             = total;
     Title             = title;
     List     = list;
     Checked  = checkedItem;
     SetTotal = setTotal;
 }
Ejemplo n.º 2
0
 public NotifyEntity(ETipoNotificacion tipo, ETipoEntidad tipoEntidad, string title)
     : this(tipo, tipoEntidad, 0, 0, title, null, true)
 {
 }
Ejemplo n.º 3
0
 public NotifyEntity(ETipoNotificacion tipo, ETipoEntidad tipoEntidad, int count, decimal total, string title, object list, bool checkedItem)
     : this(tipo, tipoEntidad, count, total, title, list, checkedItem, true)
 {
 }
Ejemplo n.º 4
0
 public NotifyEntity(ETipoNotificacion tipo, ETipoEntidad tipoEntidad, int count, decimal total, string title)
     : this(tipo, tipoEntidad, count, total, title, null)
 {
 }
Ejemplo n.º 5
0
 public NotifyEntity(ETipoNotificacion tipo, ETipoEntidad tipoEntidad, int count, decimal total)
     : this(tipo, tipoEntidad, count, total, string.Empty)
 {
 }
Ejemplo n.º 6
0
 public NotifyEntity(ETipoNotificacion tipo, string title, bool checkedItem, bool setTotal)
     : this(tipo, ETipoEntidad.Todos, 0, 0, title, null, checkedItem, setTotal)
 {
 }
Ejemplo n.º 7
0
 public NotifyEntity(ETipoNotificacion tipo, string title)
     : this(tipo, ETipoEntidad.Todos, 0, 0, title)
 {
 }
Ejemplo n.º 8
0
 public NotifyEntity(ETipoNotificacion tipo)
     : this(tipo, ETipoEntidad.Todos, 0, 0)
 {
 }