You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BOB_PARTY/bob_party/src/services/matchServices/ISaverMatch.ts

23 lines
563 B

import { Match } from "../../core/match";
export default interface ISaverMatch{
/**
* saveMatch methode that save a Match in the data management system
* m the Match we want to save
*/
saveMatch(m:Match): void;
/**
* deleteMatch methode that delete a Match in the data management system
* m the Match we want to delete
*/
deleteMatch(m:Match):void;
/**
* updateMatch methode that update a Match in the data management system
* m the Match we want to update
*/
updateMatch(m:Match): void;
}