22 lines
530 B
C#
22 lines
530 B
C#
using PartSource.Automation.Jobs.Interfaces;
|
|
using PartSource.Automation.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PartSource.Automation.Jobs
|
|
{
|
|
public class TestJob : IAutomationJob
|
|
{
|
|
public async Task<AutomationJobResult> Run()
|
|
{
|
|
return new AutomationJobResult
|
|
{
|
|
Message = "Test job ran successfully from the new server",
|
|
IsSuccess = true
|
|
};
|
|
}
|
|
}
|
|
}
|