示例#1
0
        public AuthenticationViewContainer(AuthenticationStack stack, BookingStack bookingStack)
            : base(ViewContainers.Authentication.ToString())
        {
            var mdp = new MasterDetailProxy(_page);

            NativeView  = mdp.View;
            Proxy       = mdp;
            DetailStack = stack;
            MasterStack = bookingStack;
        }
 public AuthenticationViewContainer(AuthenticationStack i_Stack)
     : base(eContainer.Authentication.ToString(), i_Stack.Proxy.NativeView)
 {
     Stack = i_Stack;
 }
示例#3
0
 public AuthenticationContainer(AuthenticationStack stack)
     : base(Containers.Authentication.ToString(), stack.Proxy.NativeView)
 {
     Stack = stack;
 }
示例#4
0
 public AuthenticationContainer(AuthenticationStack stack)
     : base(Abstraction.Enums.Container.Authentication.ToString(), stack.Proxy.NativeView)
 {
     Stack = stack;
 }