| 1234567891011121314151617181920212223242526272829 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 此代码由工具生成。
- // 对此文件的更改可能会导致不正确的行为,并且如果
- // 重新生成代码,这些更改将会丢失。
- // 如存在本生成代码外的新需求,请在相同命名空间下创建同名分部类实现 MedicalHelpHandleRepository 分部方法。
- // </auto-generated>
- //
- // <copyright file="MedicalHelpHandleRepository.gen.cs">
- // Copyright(c)2013 YUECN.All rights reserved.
- // CLR版本: v0.8
- // 开发组织:IWB
- // 公司网站:www.iwbnet.com
- // 所属工程: YZXYH
- // 生成时间:2017-08-02 12:47
- // </copyright>
- //------------------------------------------------------------------------------
- using YZXYH.Repository.Models;
- using YZXYH.Repository.Interface;
- namespace YZXYH.Repository
- {
- public partial class MedicalHelpHandleRepository:BaseRepository<MedicalHelpHandle>,IMedicalHelpHandleRepository
- {
- public MedicalHelpHandleRepository(Yzxyh2017Context context) : base(context)
- {
- }
- }
- }
|