You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
548 B
18 lines
548 B
using GDZZ.Core;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
using GDZZ.Application.Entity;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace GDZZ.Application
|
|
{
|
|
public interface IJobHuntService
|
|
{
|
|
Task Add(AddJobHuntInput input);
|
|
Task Delete(DeleteJobHuntInput input);
|
|
Task<JobHunt> Get([FromQuery] QueryeJobHuntInput input);
|
|
Task<dynamic> List([FromQuery] JobHuntInput input);
|
|
//Task<dynamic> Page([FromQuery] JobHuntInput input);
|
|
Task Update(UpdateJobHuntInput input);
|
|
}
|
|
} |