9 lines
182 B
C#
9 lines
182 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.BusinessLayer.Abstract
|
|
{
|
|
public interface ICompanyInfoService :IGenericService<CompanyInfo>
|
|
{
|
|
}
|
|
}
|