9 lines
187 B
C#
9 lines
187 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.DataAccessLayer.Abstract
|
|
{
|
|
public interface ICompanyInfoVideoDal : IGenericDal<CompanyInfoVideo>
|
|
{
|
|
}
|
|
}
|