feat: added most of shared API calls
This commit is contained in:
@ -75,4 +75,8 @@ public class Entrepreneur extends User {
|
||||
public void setSneeStatus(boolean statusSnee) {
|
||||
this.sneeStatus = sneeStatus;
|
||||
}
|
||||
|
||||
public Project getProjectParticipation() {
|
||||
return projectParticipation;
|
||||
}
|
||||
}
|
||||
|
@ -93,6 +93,10 @@ public class Project {
|
||||
this.projectStatus = projectStatus;
|
||||
}
|
||||
|
||||
public Administrator getAdministrator() {
|
||||
return this.projectAdministrator;
|
||||
}
|
||||
|
||||
public void setAdministrator(Administrator administrator) {
|
||||
this.projectAdministrator = administrator;
|
||||
}
|
||||
|
Reference in New Issue
Block a user