9 lines
181 B
C#
9 lines
181 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.BusinessLayer.Abstract
|
|
{
|
|
public interface IHomeBannerService : IGenericService<HomeBanner>
|
|
{
|
|
}
|
|
}
|