10 lines
194 B
C#
10 lines
194 B
C#
namespace YLErp.Modules.EodModule.SettlementModule
|
|
{
|
|
public interface IAsyncTaskManager
|
|
{
|
|
void SetTaskStep(string step);
|
|
|
|
void WaitTasks(params Task[] tasks);
|
|
}
|
|
}
|