using Ropin.Inspection.Model; using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.ViewModel.DEV; using Ropin.Inspection.Service.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service.DEV.Interface { public interface IDevDevOpeAccountConfigService : IBaseService, IBaseServiceById { Task GetDevOpeAccountConfigModelAsync(string devStoreCode); Task GetEntityByID(string id); } }