Esempio n. 1
0
 public OrderBusinessLayerTemplate(IUserProfile UserProfileObj)
 {
     this.UserProfileObj    = UserProfileObj;
     this.OrderDataLayerObj = new OrderDataLayer(UserProfileObj);
 }
Esempio n. 2
0
 public CardDetailsBusinessLayerTemplate(IUserProfile UserProfileObj)
 {
     this.UserProfileObj          = UserProfileObj;
     this.CardDetailsDataLayerObj = new CardDetailsDataLayer(UserProfileObj);
 }
Esempio n. 3
0
 public AddressBusinessLayerTemplate(IUserProfile UserProfileObj)
 {
     this.UserProfileObj = UserProfileObj;
     AddressDataLayerObj = new AddressDataLayer(UserProfileObj);
 }