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

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