Scheduler Service fixes

This commit is contained in:
vfedosevich 2013-05-27 16:40:31 +03:00
parent 91d9ee7d99
commit 2cf0890e14
6 changed files with 37 additions and 44 deletions

View file

@ -1868,11 +1868,10 @@ namespace WebsitePanel.EnterpriseServer
new SqlParameter("@guid", guid));
}
public static IDataReader GetProcessBackgroundTasks(int actorId, BackgroundTaskStatus status)
public static IDataReader GetProcessBackgroundTasks(BackgroundTaskStatus status)
{
return SqlHelper.ExecuteReader(ConnectionString, CommandType.StoredProcedure,
ObjectQualifier + "GetProcessBackgroundTasks",
new SqlParameter("@actorId", actorId),
ObjectQualifier + "GetProcessBackgroundTasks",
new SqlParameter("@status", (int)status));
}