Example #1
0
 public bool EditCardType(Model.VO.ClubCardTypeVO cardType)
 {
     ClubCardTypeData cardTypeData = new ClubCardTypeData();
     return cardTypeData.EditCardType(Mapper.Map<ClubCardTypeVO, ClubCardTypePO>(cardType));
 }
Example #2
0
 public bool EditCardType(Model.VO.ClubCardTypeVO cardType)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public void AddCardType(Model.VO.ClubCardTypeVO cardType)
 {
     ClubCardTypeData cardTypeData = new ClubCardTypeData();
     cardTypeData.AddCardType(Mapper.Map<ClubCardTypeVO, ClubCardTypePO>(cardType));
 }
Example #4
0
 public void AddCardType(Model.VO.ClubCardTypeVO cardType)
 {
     throw new NotImplementedException();
 }