PhotoSharingApp.AppService.Controllers.CategoryController.CategoryController C# (CSharp) Method

CategoryController() public method

Category controller constructor.
public CategoryController ( IRepository repository, Microsoft.ApplicationInsights.TelemetryClient telemetryClient, IUserRegistrationReferenceProvider userRegistrationReferenceProvider ) : System.Collections.Generic
repository IRepository The repository.
telemetryClient Microsoft.ApplicationInsights.TelemetryClient The telemetry client.
userRegistrationReferenceProvider IUserRegistrationReferenceProvider The user registration reference provider.
return System.Collections.Generic
        public CategoryController(IRepository repository, TelemetryClient telemetryClient,
            IUserRegistrationReferenceProvider userRegistrationReferenceProvider)
            : base(userRegistrationReferenceProvider)
        {
            _repository = repository;
            _telemetryClient = telemetryClient;
        }