major refactoring: working towards more interface-implementation splitting
This commit is contained in:
6
company/build.gradle.kts
Normal file
6
company/build.gradle.kts
Normal file
@@ -0,0 +1,6 @@
|
||||
description = "Umbrella : Companies"
|
||||
|
||||
dependencies{
|
||||
implementation(project(":core"))
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/* © SRSoftware 2025 */
|
||||
package de.srsoftware.umbrella.company;
|
||||
|
||||
import de.srsoftware.umbrella.core.api.CompanyService;
|
||||
import de.srsoftware.umbrella.core.api.UserService;
|
||||
import de.srsoftware.umbrella.core.model.UmbrellaUser;
|
||||
import java.util.List;
|
||||
|
||||
public class CompanyModule implements CompanyService {
|
||||
|
||||
private final UserService users;
|
||||
|
||||
public CompanyModule(UserService userService){
|
||||
users = userService;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UmbrellaUser> getMembers(long companyId) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user