Initial import
This commit is contained in:
parent
0c865416ca
commit
04804b89a9
279 changed files with 12945 additions and 0 deletions
21
ITContent/IITContent.cs
Normal file
21
ITContent/IITContent.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
using WorkFlowProvider;
|
||||
using yavscModel.WorkFlow;
|
||||
|
||||
namespace ITContent
|
||||
{
|
||||
public interface IITContent: IContentProvider
|
||||
{
|
||||
int NewProject(string name, string desc, string ownedId);
|
||||
void AddDevRessource (int prjId, string userName);
|
||||
int NewTask(int projectId, string name, string desc);
|
||||
void SetProjectName(int projectId, string name);
|
||||
void SetProjectDesc(int projectId, string desc);
|
||||
void SetTaskName(int taskId, string name);
|
||||
void SetStartDate(int taskId, DateTime d);
|
||||
void SetEndDate(int taskId, DateTime d);
|
||||
void SetTaskDesc(int taskId, string desc);
|
||||
void NewRelease(int projectId, string Version);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue