init
This commit is contained in:
21
DouyinApi.IServices/IGuestbookServices.cs
Normal file
21
DouyinApi.IServices/IGuestbookServices.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using DouyinApi.IServices.BASE;
|
||||
using DouyinApi.Model;
|
||||
using DouyinApi.Model.Models;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DouyinApi.IServices
|
||||
{
|
||||
public partial interface IGuestbookServices : IBaseServices<Guestbook>
|
||||
{
|
||||
Task<MessageModel<string>> TestTranInRepository();
|
||||
Task<bool> TestTranInRepositoryAOP();
|
||||
|
||||
Task<bool> TestTranPropagation();
|
||||
|
||||
Task<bool> TestTranPropagationNoTran();
|
||||
|
||||
Task<bool> TestTranPropagationTran();
|
||||
Task TestTranPropagationTran2();
|
||||
Task TestTranPropagationTran3();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user