Example #1
0
        public ControllerObject(ControllerObject other)
        {
            other.CheckArgument(nameof(other));

            contextOwner = false;
            this.Context = other.Context;
        }
 protected GenericController(ControllerObject other) : base(other)
 {
 }
 static partial void CreateController <C>(Controllers.ControllerObject controllerObject, ref ClientContracts.IControllerAccess <C> controller)
     where C : SmartNQuick.Contracts.IIdentifiable;