public MesoController(IMesoService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
示例#2
0
 public ExerciseService(ComposifitDbContext context, IMesoService mesoService, IIdentityProvider identityProvider)
 {
     _context     = context;
     _mesoService = mesoService;
     _identity    = identityProvider;
 }