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/conversationService/ISaverConversation.ts

23 lines
717 B

import { Conversation } from "../../core/conversation";
export default interface ISaverConversation{
/**
* saveConversation methode that save a Conversation in the data management system
* c the Conversation we want to save
*/
saveConversation(c:Conversation): Promise<void>;
/**
* deleteConversation methode that delete a Conversation in the data management system
* c the Conversation we want to delete
*/
deleteConversation(c:Conversation): Promise<void>;
/**
* updateConversation methode that update a Conversation in the data management system
* c the Conversation we want to update
*/
updateConversation(c:Conversation): Promise<void>;
}