You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
15 lines
393 B
using Infrastructure.Data;
|
|
using IoTShared.Application.Domain.Entities;
|
|
using IoTShared.Application.Models;
|
|
using System;
|
|
|
|
namespace IoT.Shared.Areas.IoTCenter.Controlls
|
|
{
|
|
public class CategoryController : SharedController<Category, EditCategoryModel>
|
|
{
|
|
public CategoryController(IRepository<Category> repo, IServiceProvider sp) : base(repo, sp)
|
|
{
|
|
}
|
|
}
|
|
}
|