Exemplo n.º 1
0
        public static Modules.Base.Translation Create()
        {
            BeforeCreate();
            var result = new Modules.Base.Translation();

            AfterCreate(result);
            return(result);
        }
Exemplo n.º 2
0
        public static Modules.Base.Translation Create(QnSProjectAward.Contracts.Modules.Base.ITranslation other)
        {
            BeforeCreate(other);
            var result = new Modules.Base.Translation();

            result.CopyProperties(other);
            AfterCreate(result, other);
            return(result);
        }
Exemplo n.º 3
0
        public static Modules.Base.Translation Create(object other)
        {
            BeforeCreate(other);
            CommonBase.Extensions.ObjectExtensions.CheckArgument(other, nameof(other));
            var result = new Modules.Base.Translation();

            CommonBase.Extensions.ObjectExtensions.CopyFrom(result, other);
            AfterCreate(result, other);
            return(result);
        }
Exemplo n.º 4
0
 static partial void AfterCreate(Modules.Base.Translation instance, QnSProjectAward.Contracts.Modules.Base.ITranslation other);
Exemplo n.º 5
0
 static partial void AfterCreate(Modules.Base.Translation instance, object other);
Exemplo n.º 6
0
 static partial void AfterCreate(Modules.Base.Translation instance);