using Infrastructure.Data; using IoT.Shared.Application.Domain.Entities; using IoT.Shared.Application.Models; using System; namespace IoT.Shared.Areas.IoTCenter.Controlls { public class CategoryController : SharedController { public CategoryController(IRepository repo, IServiceProvider sp) : base(repo, sp) { } } }