示例#1
0
 public bool EditCardType(Model.VO.ClubCardTypeVO cardType)
 {
     ClubCardTypeData cardTypeData = new ClubCardTypeData();
     return cardTypeData.EditCardType(Mapper.Map<ClubCardTypeVO, ClubCardTypePO>(cardType));
 }
示例#2
0
文件: BizMocker.cs 项目: WISD/WisdCar
 public bool EditCardType(Model.VO.ClubCardTypeVO cardType)
 {
     throw new NotImplementedException();
 }
示例#3
0
 public void AddCardType(Model.VO.ClubCardTypeVO cardType)
 {
     ClubCardTypeData cardTypeData = new ClubCardTypeData();
     cardTypeData.AddCardType(Mapper.Map<ClubCardTypeVO, ClubCardTypePO>(cardType));
 }
示例#4
0
文件: BizMocker.cs 项目: WISD/WisdCar
 public void AddCardType(Model.VO.ClubCardTypeVO cardType)
 {
     throw new NotImplementedException();
 }