Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_IProcessService/IPlatFormService.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_ProcessService/PlatFormService.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_IProcessService/IPlatFormService.cs
对比新文件 @@ -0,0 +1,10 @@ 锘縰sing WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_IProcessService { public interface IPlatFormService : IService<Platform> { } } Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_ProcessService/PlatFormService.cs
对比新文件 @@ -0,0 +1,15 @@ 锘縰sing WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_IProcessRepository; using WIDESEAWCS_IProcessService; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_ProcessService { public partial class PlatFormService:ServiceBase<Platform,IPlatFormRepository>,IPlatFormService { public PlatFormService(IPlatFormRepository BaseDal) : base(BaseDal) { } } }