I have an DatesService which responsible for manipulate dates. Also I have two services who need to use date manipulation - EventsService and CalendarService. CalendarService use EventsService.
My question is: what is better (performance and everything else) - include DatesService in both services, or in CalendarService call DatesService through EventsService in this way: this.eventsService.datesService?