TF-1842: Create deleteSendingEmail in data layer

(cherry picked from commit 71a998e7753e54bea35f41042c8f03c53394ccca)
This commit is contained in:
HuyNguyen
2023-05-31 00:57:58 +07:00
committed by Dat Vu
parent 22bba8c459
commit ea1b2559ec
3 changed files with 12 additions and 0 deletions
@@ -198,4 +198,9 @@ class EmailDataSourceImpl extends EmailDataSource {
Future<List<SendingEmail>> getAllSendingEmails(AccountId accountId, UserName userName) {
throw UnimplementedError();
}
@override
Future<void> deleteSendingEmail(AccountId accountId, UserName userName, EmailId emailId) {
throw UnimplementedError();
}
}