folder structure
This commit is contained in:
parent
5d3f8ea46a
commit
84e2ec72ac
242 changed files with 635 additions and 635 deletions
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
|
@ -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 {
|
||||
/**
|
Loading…
Add table
Add a link
Reference in a new issue