using System; using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkFlow; using GxPress.Request.App.Flow; using Datory; using GxPress.Entity.WorkMeeting; using GxPress.Entity.WorkCar; namespace GxPress.Repository.Interface.WorkCar { public interface ICarOrderRepository : IRepository { Task InsertAsync(CarOrder item); Task> GetListAsync(int userId); Task DeleteAsync(int orderId); Task DeleteByCarIdAsync(int carId); Task> GetOrderedCarIds(int typeId, DateTime startDate, DateTime endDate); } }