예제 #1
0
 public Model(WebController.Parms pWebParms, string pEmailUserId, string pFirstName, string pMsgId)
 {
     this.WebParms = pWebParms;
     this.Parms    = new MParms()
     {
         EmailUserId = pEmailUserId, FirstName = pFirstName, MsgId = pMsgId
     };
     this.URL = new MURL();
 }
예제 #2
0
 public Model(string pRole, WebController.Parms pWebParms, string pMsgId)
 {
     this.Role     = pRole;
     this.WebParms = pWebParms;
     this.Parms    = new MParms()
     {
         MsgId = pMsgId
     };
     this.URL = new MURL();
 }
예제 #3
0
 public Model(WebController.Parms pWebParms, string pEmailUserId, string pFirstName, string pMsgId, string pAction, string pLocation, string pPaypal, Guid?pId)
 {
     this.Parms = new MParms()
     {
         EmailUserId = pEmailUserId, FirstName = pFirstName, MsgId = pMsgId
     };
     this.WebParms = pWebParms;
     this.URL      = new MURL()
     {
         Action = pAction, Location = pLocation, Paypal = pPaypal, Id = pId
     };
 }