コード例 #1
0
        private void PersistData(
            PowerThreadContext context
            , PowerThreadForm form
            , PowerThreadEntity formData)
        {
            if (context == null)
            {
                throw new ArgumentNullException(nameof(context));
            }

            if (form == null)
            {
                throw new ArgumentNullException(nameof(form));
            }

            if (formData == null)
            {
                throw new ArgumentNullException(nameof(formData));
            }

            throw new NotImplementedException();
        }
コード例 #2
0
 public PowerThreadForm(Guid objectId, string name, string formPath) : base(objectId, name)
 {
     this.FormPath         = formPath;
     this.BindingViewModel = new PowerThreadEntity(Guid.NewGuid(), name + "-Entity");
 }