示例#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)
 {
 }