public static ERPGrant_application Create(string applicantname, Applicanttype applicanttype, string contactperson, string email, Status status, string websiteurl, string company, string addresshtml, string contacthtml, string grantdescription, double amount, long hasanypastgrantrecord, string route, long published, double assessmentmark, string note, string assessmentmanager, long emailnotificationsent)

        {
            ERPGrant_application obj = new ERPGrant_application();

            obj.applicant_name            = applicantname;
            obj.applicant_type            = applicanttype;
            obj.contact_person            = contactperson;
            obj.email                     = email;
            obj.status                    = status;
            obj.website_url               = websiteurl;
            obj.company                   = company;
            obj.address_html              = addresshtml;
            obj.contact_html              = contacthtml;
            obj.grant_description         = grantdescription;
            obj.amount                    = amount;
            obj.has_any_past_grant_record = hasanypastgrantrecord;
            obj.route                     = route;
            obj.published                 = published;
            obj.assessment_mark           = assessmentmark;
            obj.note = note;
            obj.assessment_manager      = assessmentmanager;
            obj.email_notification_sent = emailnotificationsent;
            return(obj);
        }
Example #2
0
        public static ERPSanctioned_loan_amount Create(Applicanttype applicanttype, string applicant, string company, double sanctionedamountlimit)

        {
            ERPSanctioned_loan_amount obj = new ERPSanctioned_loan_amount();

            obj.applicant_type          = applicanttype;
            obj.applicant               = applicant;
            obj.company                 = company;
            obj.sanctioned_amount_limit = sanctionedamountlimit;
            return(obj);
        }
        public static ERPLoan_application Create(string applicant, Applicanttype applicanttype, string company, string loantype)

        {
            ERPLoan_application obj = new ERPLoan_application();

            obj.applicant      = applicant;
            obj.applicant_type = applicanttype;
            obj.company        = company;
            obj.loan_type      = loantype;
            return(obj);
        }
        public static ERPLoan Create(Applicanttype applicanttype, string applicant, string loantype, string postingdate, string company, double rateofinterest, string modeofpayment, string paymentaccount, string loanaccount, string interestincomeaccount, string penaltyincomeaccount)

        {
            ERPLoan obj = new ERPLoan();

            obj.applicant_type          = applicanttype;
            obj.applicant               = applicant;
            obj.loan_type               = loantype;
            obj.posting_date            = postingdate;
            obj.company                 = company;
            obj.rate_of_interest        = rateofinterest;
            obj.mode_of_payment         = modeofpayment;
            obj.payment_account         = paymentaccount;
            obj.loan_account            = loanaccount;
            obj.interest_income_account = interestincomeaccount;
            obj.penalty_income_account  = penaltyincomeaccount;
            return(obj);
        }
Example #5
0
        public static ERPLoan_security_pledge Create(string applicant, string securities, string company, Applicanttype applicanttype)

        {
            ERPLoan_security_pledge obj = new ERPLoan_security_pledge();

            obj.applicant      = applicant;
            obj.securities     = securities;
            obj.company        = company;
            obj.applicant_type = applicanttype;
            return(obj);
        }