public TableController(IMapper mapper, IWeigtLogManageService weigtLogManageService,
                        IApplicationUserService applicationUserService)
 {
     _mapper = mapper;
     _weigtLogManageService  = weigtLogManageService;
     _applicationUserService = applicationUserService;
 }
예제 #2
0
 public ChartController(IWeigtLogManageService weigtLogService, IApplicationUserService applicationUserService, IMapper mapper)
 {
     _weigtLogService        = weigtLogService;
     _applicationUserService = applicationUserService;
     _mapper = mapper;
 }