Exemplo n.º 1
0
        public EntityFilter(IEntityListViewModel <TClass> target)
        {
            _token = target.List.Suspender.Get();
            Target = target;

            H <EntityFilter <TClass> > .Initialize(this);
        }
Exemplo n.º 2
0
 public ColumnHelper(IColumn <T> column, IEntityListViewModel <T> target, IErpServices erp)
 {
     Column = column;
     Target = target;
     Erp    = erp;
 }
Exemplo n.º 3
0
 public ColumnConfigurator(IEntityListViewModel <T> list, IErpServices erp)
     : this(new ColumnHelper <T>(new Column <T>(), list, erp), erp)
 {
 }
Exemplo n.º 4
0
 public EntityFilterNullable(IEntityListViewModel <TClass> target)
 {
     Target = target;
     H <EntityFilterNullable <TClass> > .Initialize(this);
 }
Exemplo n.º 5
0
 public EntityFilter(IEntityListViewModel <TClass> target) : base(target)
 {
     Header   = $"{{{typeof(TClass).Name}}}";
     IconPath = $"Icons/Entities/{typeof(TClass).Name}";
 }