31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
|
/***********************************************************
|
|||
|
**项目名称: BZPT.Repositories
|
|||
|
**功能描述: 工区劳务队
|
|||
|
**作 者: 初版由CodeSmith生成。
|
|||
|
**版 本 号: 1.0
|
|||
|
**修改历史:
|
|||
|
************************************************************/
|
|||
|
namespace BZPT.Repositories.Pro
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Linq;
|
|||
|
using BZPT.Domains.IRepositories.Pro;
|
|||
|
using BZPT.Domains.Entity.Pro;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// WorkAreaTeam仓储操作
|
|||
|
/// </summary>
|
|||
|
public partial class WorkAreaTeamRepository : DefaultRepository<WorkAreaTeam>, IWorkAreaTeamRepository
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Initializes a new instance of the <see cref="WorkAreaTeamRepository"/> class.
|
|||
|
/// </summary>
|
|||
|
/// <param name="options">
|
|||
|
/// The options.
|
|||
|
/// </param>
|
|||
|
public WorkAreaTeamRepository(IRepositoryOptions options, DBContext db)
|
|||
|
: base(options,db)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|