Exemplo n.º 1
0
 protected BaseView(Func <CommandContext, bool> isAllowed, int minimumWidth, int minimumHeight, IPinnedView pinned)
 {
     this.isAllowed = isAllowed;
     MinimumWidth   = minimumWidth;
     MinimumHeight  = minimumHeight;
     PinnedView     = pinned;
 }
Exemplo n.º 2
0
 protected BasePinnedView(Func <CommandContext, bool> isAllowed, int minimumWidth, int minimumHeight, IPinnedView pinned) : base(isAllowed, minimumWidth, minimumHeight, pinned)
 {
 }