public MatchReport GetMatchReportByID(int id) { return(DTOConverter.GetMatchReportFromDTO(MatchreportCollectionDAL.GetMatchReportByID(id))); }
public void AddMatchReport(MatchReport matchreport) { MatchreportCollectionDAL.AddMatchReport(DTOConverter.GetMatchReportDTO(matchreport)); }
public List <MatchReport> GetAllMatchReports() { return(DTOConverter.GetAllMatchReports(MatchreportCollectionDAL.GetAllMatchReports())); }