Example #1
0
 public List <PipCoin> GetByUserId(int UserId)
 {
     pcDAL = new PipCoinDAL();
     return(pcDAL.GetByUserId(UserId));
 }
Example #2
0
 public int Insert(PipCoin pc)
 {
     pcDAL = new PipCoinDAL();
     return(pcDAL.Insert(pc));
 }