123456789101112131415161718 |
- 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<DEV_DevOpeAccountConfigModel>, IBaseServiceById<DEV_DevOpeAccountConfigModel, Guid>
- {
- Task<DEV_DevOpeAccountConfigModel> GetDevOpeAccountConfigModelAsync(string devStoreCode);
- Task<DEV_DevOpeAccountConfigModel> GetEntityByID(string id);
- }
- }
|