Example #1
0
 public MatchReport GetMatchReportByID(int id)
 {
     return(DTOConverter.GetMatchReportFromDTO(MatchreportCollectionDAL.GetMatchReportByID(id)));
 }
Example #2
0
 public void AddMatchReport(MatchReport matchreport)
 {
     MatchreportCollectionDAL.AddMatchReport(DTOConverter.GetMatchReportDTO(matchreport));
 }
Example #3
0
 public List <MatchReport> GetAllMatchReports()
 {
     return(DTOConverter.GetAllMatchReports(MatchreportCollectionDAL.GetAllMatchReports()));
 }