Example #1
0
 public void DelMatch(MatchContract match)
 {
     jtm.DelMatch(MatchAdapter.MatchContractToMatch(match));
 }
Example #2
0
 public void UpdateMatch(MatchContract match)
 {
     jtm.UpdateMatch(MatchAdapter.MatchContractToMatch(match));
 }
Example #3
0
        public MatchContract AddMatch(MatchContract match)
        {
            jtm.AddMatch(MatchAdapter.MatchContractToMatch(match));

            return(match);
        }