Exemple #1
0
 public IndexModel(IMapper mapper, IWeigtLogService weigtLogManageService,
                   IApplicationUserService applicationUserService)
 {
     _mapper = mapper;
     _weigtLogManageService  = weigtLogManageService;
     _applicationUserService = applicationUserService;
 }
Exemple #2
0
 public IndexModel(IWeigtLogService weigtLogService, IApplicationUserService applicationUserService, IMapper mapper)
 {
     _weigtLogService        = weigtLogService;
     _applicationUserService = applicationUserService;
     _mapper = mapper;
 }
Exemple #3
0
 public CreateModel(IApplicationUserService applicationUserService, IWeigtLogService weigtLogService, IMapper mapper)
 {
     _applicationUserService = applicationUserService;
     _mapper          = mapper;
     _weigtLogService = weigtLogService;
 }