using AutoMapper; using LinqKit; using Ropin.Inspection.Common.Accessor.Interface; using Ropin.Inspection.Model; using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Repository; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service { public class TbdmProvService : ITbdmProvService { private readonly ITbdmProvRepository _repository; private readonly IMapper _mapper; private readonly IClaimsAccessor _claims; public TbdmProvService(IClaimsAccessor claims, ITbdmProvRepository repository, IMapper mapper) { _repository = repository; _mapper = mapper; _claims = claims; } public async Task> GetProvListTreeAsync() { return await _repository.GetProvListTreeAsync(); } public Task UpdateOneAsync(TbdmProvViewModel viewModel, params string[] fields) { throw new NotImplementedException(); } public Task IsExistAsync(Guid id) { throw new NotImplementedException(); } public Task> GetByConditionAsync(Expression> expression) { throw new NotImplementedException(); } public Task> GetAllAsync() { throw new NotImplementedException(); } public Task CreateOneAsync(TbdmProvViewModel viewModel) { throw new NotImplementedException(); } public Task GetByIdAsync(Guid id) { throw new NotImplementedException(); } public Task DeleteAsync(Guid id) { throw new NotImplementedException(); } } }