Esempio n. 1
0
 private void CreateLoanRule(AbstractUserContext usercontext, string entityid, string answer)
 {
     CreateElementRegistrationHelper.Create(
         new ElementContextInfo(
             entityid,
             ElementType.Rule,
             null,
             typeof(LoanRuleBehavior).FullName,
             null,
             answer), null, true
         );
 }
 private void CreateApplicantFlow(AbstractUserContext usercontext, string entityid, string answer)
 {
     CreateElementRegistrationHelper.Create(
         new ElementContextInfo(
             entityid,
             ElementType.Flow,
             null,
             typeof(ApplicantFlowBehavior).FullName,
             null,
             answer), null, true
         );
 }