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 ITsysUserPostService : IBaseService, IBaseServiceById { Task GetUserPostsByUserIdAsync(Guid id); } }