Blog.Web.Api.Controllers.ViewCountController.ViewCountController C# (CSharp) Method

ViewCountController() public method

public ViewCountController ( IViewCountResource service, IErrorSignaler errorSignaler ) : System
service IViewCountResource
errorSignaler IErrorSignaler
return System
        public ViewCountController(IViewCountResource service, IErrorSignaler errorSignaler)
        {
            _service = service;
            _errorSignaler = errorSignaler;
        }
ViewCountController