using System.Threading.Tasks;

namespace GxPress.Service.Interface.Job
{
    public interface IJobService:IService
    {
         Task<bool> UploadElasticSearchAsnc();
    }
}