2024-03-25 07:57:46 -05:00
|
|
|
using System.Threading.Tasks;
|
2024-03-29 12:39:29 -05:00
|
|
|
using AAIntegration.SimmonsBank.API.Entities;
|
2024-03-25 07:57:46 -05:00
|
|
|
using AAIntegration.SimmonsBank.API.Services;
|
|
|
|
|
|
|
|
namespace AAIntegration.SimmonsBank.API.Processes;
|
|
|
|
|
|
|
|
public interface IPuppeteerProcess
|
|
|
|
{
|
2024-04-02 22:28:52 -05:00
|
|
|
void SetService(IPuppeteerService puppeteerService);
|
2024-04-02 21:52:01 -05:00
|
|
|
void SetStoppingToken(CancellationToken stoppingToken);
|
2024-03-29 12:39:29 -05:00
|
|
|
Task StayLoggedIn(User user);
|
2024-03-25 07:57:46 -05:00
|
|
|
}
|