Esempio n. 1
0
        public ControllerObject(ControllerObject other)
        {
            other.CheckArgument(nameof(other));

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