Example #1
0
        public ServicesController(IHttpContextAccessor httpContextAccessor, IServicesRepo repo)
        {
            if (httpContextAccessor == null)
            {
                throw new ArgumentNullException(nameof(httpContextAccessor));
            }

            m_repo = repo;
        }
 public Handler(IServicesRepo servicesRepo)
 {
     this.servicesRepo = servicesRepo;
 }