folder structure

This commit is contained in:
Julian Krauser 2025-01-05 14:14:00 +01:00
parent 5d3f8ea46a
commit 84e2ec72ac
242 changed files with 635 additions and 635 deletions

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { calendar } from "../entity/calendar";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { calendar } from "../../entity/club/calendar";
import InternalException from "../../exceptions/internalException";
export default abstract class CalendarService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { communication } from "../entity/communication";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { communication } from "../../../entity/club/member/communication";
import InternalException from "../../../exceptions/internalException";
export default abstract class CommunicationService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { memberAwards } from "../entity/memberAwards";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { memberAwards } from "../../../entity/club/member/memberAwards";
import InternalException from "../../../exceptions/internalException";
export default abstract class MemberAwardService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { memberExecutivePositions } from "../entity/memberExecutivePositions";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { memberExecutivePositions } from "../../../entity/club/member/memberExecutivePositions";
import InternalException from "../../../exceptions/internalException";
export default abstract class MemberExecutivePositionService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { memberQualifications } from "../entity/memberQualifications";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { memberQualifications } from "../../../entity/club/member/memberQualifications";
import InternalException from "../../../exceptions/internalException";
export default abstract class MemberQualificationService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { member } from "../entity/member";
import { membership } from "../entity/membership";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { member } from "../../../entity/club/member/member";
import { membership } from "../../../entity/club/member/membership";
import InternalException from "../../../exceptions/internalException";
export default abstract class MemberService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { membership } from "../entity/membership";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { membership } from "../../../entity/club/member/membership";
import InternalException from "../../../exceptions/internalException";
export default abstract class MembershipService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { newsletterDates } from "../entity/newsletterDates";
import { member } from "../entity/member";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { newsletterDates } from "../../../entity/club/newsletter/newsletterDates";
import { member } from "../../../entity/club/member/member";
import InternalException from "../../../exceptions/internalException";
export default abstract class NewsletterDatesService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { newsletterRecipients } from "../entity/newsletterRecipients";
import { member } from "../entity/member";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { newsletterRecipients } from "../../../entity/club/newsletter/newsletterRecipients";
import { member } from "../../../entity/club/member/member";
import InternalException from "../../../exceptions/internalException";
export default abstract class NewsletterRecipientsService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { newsletter } from "../entity/newsletter";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { newsletter } from "../../../entity/club/newsletter/newsletter";
import InternalException from "../../../exceptions/internalException";
export default abstract class NewsletterService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { protocolAgenda } from "../entity/protocolAgenda";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { protocolAgenda } from "../../../entity/club/protocol/protocolAgenda";
import InternalException from "../../../exceptions/internalException";
export default abstract class ProtocolAgendaService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { protocolDecision } from "../entity/protocolDecision";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { protocolDecision } from "../../../entity/club/protocol/protocolDecision";
import InternalException from "../../../exceptions/internalException";
export default abstract class ProtocolDecisionService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { protocolPresence } from "../entity/protocolPresence";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { protocolPresence } from "../../../entity/club/protocol/protocolPresence";
import InternalException from "../../../exceptions/internalException";
export default abstract class ProtocolPresenceService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { protocolPrintout } from "../entity/protocolPrintout";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { protocolPrintout } from "../../../entity/club/protocol/protocolPrintout";
import InternalException from "../../../exceptions/internalException";
export default abstract class ProtocolPrintoutService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { protocol } from "../entity/protocol";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { protocol } from "../../../entity/club/protocol/protocol";
import InternalException from "../../../exceptions/internalException";
export default abstract class ProtocolService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { protocolVoting } from "../entity/protocolVoting";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../../data-source";
import { protocolVoting } from "../../../entity/club/protocol/protocolVoting";
import InternalException from "../../../exceptions/internalException";
export default abstract class ProtocolVotingService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { award } from "../entity/award";
import { member } from "../entity/member";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { award } from "../../entity/settings/award";
import { member } from "../../entity/club/member/member";
import InternalException from "../../exceptions/internalException";
export default abstract class AwardService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { calendarType } from "../entity/calendarType";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { calendarType } from "../../entity/settings/calendarType";
import InternalException from "../../exceptions/internalException";
export default abstract class CalendarTypeService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { communicationType } from "../entity/communicationType";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { communicationType } from "../../entity/settings/communicationType";
import InternalException from "../../exceptions/internalException";
export default abstract class CommunicationTypeService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { executivePosition } from "../entity/executivePosition";
import { memberExecutivePositions } from "../entity/memberExecutivePositions";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { executivePosition } from "../../entity/settings/executivePosition";
import { memberExecutivePositions } from "../../entity/club/member/memberExecutivePositions";
import InternalException from "../../exceptions/internalException";
export default abstract class ExecutivePositionService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { membershipStatus } from "../entity/membershipStatus";
import InternalException from "../exceptions/internalException";
import { membership } from "../entity/membership";
import { dataSource } from "../../data-source";
import { membershipStatus } from "../../entity/settings/membershipStatus";
import InternalException from "../../exceptions/internalException";
import { membership } from "../../entity/club/member/membership";
export default abstract class MembershipStatusService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { newsletterConfig } from "../entity/newsletterConfig";
import { member } from "../entity/member";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { newsletterConfig } from "../../entity/settings/newsletterConfig";
import { member } from "../../entity/club/member/member";
import InternalException from "../../exceptions/internalException";
export default abstract class NewsletterConfigService {
/**

View file

@ -1,8 +1,8 @@
import { dataSource } from "../data-source";
import { memberQualifications } from "../entity/memberQualifications";
import { qualification } from "../entity/qualification";
import { user } from "../entity/user";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { memberQualifications } from "../../entity/club/member/memberQualifications";
import { qualification } from "../../entity/settings/qualification";
import { user } from "../../entity/user/user";
import InternalException from "../../exceptions/internalException";
export default abstract class QualificationService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { query } from "../entity/query";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { query } from "../../entity/settings/query";
import InternalException from "../../exceptions/internalException";
export default abstract class QueryStoreService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { template } from "../entity/template";
import { member } from "../entity/member";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { template } from "../../entity/settings/template";
import { member } from "../../entity/club/member/member";
import InternalException from "../../exceptions/internalException";
export default abstract class TemplateService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { templateUsage } from "../entity/templateUsage";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { templateUsage } from "../../entity/settings/templateUsage";
import InternalException from "../../exceptions/internalException";
export default abstract class TemplateUsageService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { invite } from "../entity/invite";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { invite } from "../../entity/user/invite";
import InternalException from "../../exceptions/internalException";
export default abstract class InviteService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { rolePermission } from "../entity/role_permission";
import { userPermission } from "../entity/user_permission";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { rolePermission } from "../../entity/user/role_permission";
import { userPermission } from "../../entity/user/user_permission";
import InternalException from "../../exceptions/internalException";
export default abstract class RolePermissionService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { role } from "../entity/role";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { role } from "../../entity/user/role";
import InternalException from "../../exceptions/internalException";
export default abstract class RoleService {
/**

View file

@ -1,6 +1,6 @@
import { dataSource } from "../data-source";
import { userPermission } from "../entity/user_permission";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { userPermission } from "../../entity/user/user_permission";
import InternalException from "../../exceptions/internalException";
export default abstract class UserPermissionService {
/**

View file

@ -1,7 +1,7 @@
import { dataSource } from "../data-source";
import { role } from "../entity/role";
import { user } from "../entity/user";
import InternalException from "../exceptions/internalException";
import { dataSource } from "../../data-source";
import { role } from "../../entity/user/role";
import { user } from "../../entity/user/user";
import InternalException from "../../exceptions/internalException";
export default abstract class UserService {
/**