예제 #1
0
 public IDataResult <Card> GetByCardId(int cardId)
 {
     return(new SuccessDataResult <Card>(_cardDal.GetById(x => x.Id == cardId)));
 }