public static Business.Account.AppAccess Create()
        {
            BeforeCreate();
            var result = new Business.Account.AppAccess();

            AfterCreate(result);
            return(result);
        }
        public static Business.Account.AppAccess Create(QnSProjectAward.Contracts.Business.Account.IAppAccess other)
        {
            BeforeCreate(other);
            var result = new Business.Account.AppAccess();

            result.CopyProperties(other);
            AfterCreate(result, other);
            return(result);
        }
        public static Business.Account.AppAccess Create(object other)
        {
            BeforeCreate(other);
            CommonBase.Extensions.ObjectExtensions.CheckArgument(other, nameof(other));
            var result = new Business.Account.AppAccess();

            CommonBase.Extensions.ObjectExtensions.CopyFrom(result, other);
            AfterCreate(result, other);
            return(result);
        }
 static partial void AfterCreate(Business.Account.AppAccess instance, QnSProjectAward.Contracts.Business.Account.IAppAccess other);
 static partial void AfterCreate(Business.Account.AppAccess instance, object other);
 static partial void AfterCreate(Business.Account.AppAccess instance);