public CardioService(ComposifitDbContext context) { _context = context; }
public MesoService(ComposifitDbContext context, IIdentityProvider identityProvider) { _context = context; _identity = identityProvider; }
public TrackService(ComposifitDbContext context, IMapper mapper) { _context = context; _mapper = mapper; }
public ExerciseService(ComposifitDbContext context, IMesoService mesoService, IIdentityProvider identityProvider) { _context = context; _mesoService = mesoService; _identity = identityProvider; }