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