Exemplo n.º 1
0
        public void AssignTo(DonateMemberInfo info, decimal amount, int paidtype, string memo)
        {
            Donate item = Donate.New(info, amount, paidtype);

            item.Memo = memo;
            int index = this.Count;

            this.Insert(index, item);
        }
Exemplo n.º 2
0
 private Donate(DonateMemberInfo member, decimal amount, int paidtype)
 {
     MarkAsChild();
     _donateid = member.ID;
     _name     = member.Ko_name;
     _memberid = member.MemberID;
     _amount   = amount;
     _paidtype = paidtype;
     _username = (Dothan.ApplicationContext.User as Dothan.Library.Security.PTPrincipal).UserName;
 }
Exemplo n.º 3
0
 internal static Donate New(DonateMemberInfo member, decimal amount, int paidtype)
 {
     return(new Donate(member, amount, paidtype));
 }