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