namespace Model
{
using System.Collections.Generic;
using System.Data.Linq;
using System.Data.Linq.Mapping;
using System.Reflection;
public partial class SGGLDB : DataContext
{
///
/// ��ȡ��ǰ�û����ƶ��˴�������
///
///
///
///
[Function(Name = "[dbo].[Sp_APP_GetToDoItems]")]
public IEnumerable Sp_APP_GetToDoItems([Parameter(DbType = "nvarchar(50)")] string projectId, [Parameter(DbType = "nvarchar(50)")] string personId)
{
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), projectId, personId);
return (ISingleResult)result.ReturnValue;
}
///
/// ��ȡ��ǰ�û��ڱ�����������
///
///
///
///
[Function(Name = "[dbo].[Sp_Main_GetToDoItems]")]
public IEnumerable Sp_Main_GetToDoItems([Parameter(DbType = "nvarchar(50)")] string personId)
{
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), personId);
return (ISingleResult)result.ReturnValue;
}
///
/// ��ȡ��Ա��ѵ�̲�
///
///
///
///
[Function(Name = "[dbo].[Sp_GetTraining_TaskItemTraining]")]
public IEnumerable Sp_GetTraining_TaskItemTraining([Parameter(DbType = "nvarchar(50)")] string planId, [Parameter(DbType = "nvarchar(200)")] string workPostId)
{
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), planId, workPostId);
return (ISingleResult)result.ReturnValue;
}
}
}