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.
iot/projects/IoT.Shared/Areas/IoTCenter/Controlls/CategoryController.cs

15 lines
415 B

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<IoTProductCategory, EditCategoryModel>
{
public CategoryController(IRepository<IoTProductCategory> repo, IServiceProvider sp) : base(repo, sp)
{
}
}
}