NuSurvey.Web.Controllers.SurveyResponseController.SurveyResponseController C# (CSharp) Method

SurveyResponseController() public method

public SurveyResponseController ( IRepository surveyResponseRepository, IScoreService scoreService, IRepository photoRepository, IBlobStoargeService blobStoargeService ) : System
surveyResponseRepository IRepository
scoreService IScoreService
photoRepository IRepository
blobStoargeService IBlobStoargeService
return System
        public SurveyResponseController(IRepository<SurveyResponse> surveyResponseRepository, IScoreService scoreService, IRepository<Photo> photoRepository, IBlobStoargeService blobStoargeService)
        {
            _surveyResponseRepository = surveyResponseRepository;
            _scoreService = scoreService;
            _photoRepository = photoRepository;
            _blobStoargeService = blobStoargeService;
        }