Exemplo n.º 1
0
 /// <summary>
 /// Add request to a position in a project, sepecify the user which requesting, state request status 1, if the Project Admin
 /// wants to add someone to his project, the RequestType should be 2, otherwise 1
 /// </summary>
 public static bool AddProjectRequest(int PositionID, int userID, int RequestStatus, int RequestType)
 {
     return(ProjectDB.AddProjectReqeust(PositionID, userID, RequestStatus, RequestType));
 }