21 lines
565 B
C#
21 lines
565 B
C#
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();
|
|
}
|
|
} |