using Ropin.Inspection.Model.ViewModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service.Interface { public interface ITsysPostService : IBaseService, IBaseServiceById { Task> GetAllAsync(); Task UpdateAsync(Guid id, TsysPostUpdateViewModel updateUser); } }