예제 #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;
 }
예제 #2
0
 public NotifyEntity(ETipoNotificacion tipo, ETipoEntidad tipoEntidad, string title)
     : this(tipo, tipoEntidad, 0, 0, title, null, true)
 {
 }
예제 #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)
 {
 }
예제 #4
0
 public NotifyEntity(ETipoNotificacion tipo, ETipoEntidad tipoEntidad, int count, decimal total, string title)
     : this(tipo, tipoEntidad, count, total, title, null)
 {
 }
예제 #5
0
 public NotifyEntity(ETipoNotificacion tipo, ETipoEntidad tipoEntidad, int count, decimal total)
     : this(tipo, tipoEntidad, count, total, string.Empty)
 {
 }
예제 #6
0
 public NotifyEntity(ETipoNotificacion tipo, string title, bool checkedItem, bool setTotal)
     : this(tipo, ETipoEntidad.Todos, 0, 0, title, null, checkedItem, setTotal)
 {
 }
예제 #7
0
 public NotifyEntity(ETipoNotificacion tipo, string title)
     : this(tipo, ETipoEntidad.Todos, 0, 0, title)
 {
 }
예제 #8
0
 public NotifyEntity(ETipoNotificacion tipo)
     : this(tipo, ETipoEntidad.Todos, 0, 0)
 {
 }