9 lines
169 B
C#
9 lines
169 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.BusinessLayer.Abstract
|
|
{
|
|
public interface ITeamService : IGenericService<Team>
|
|
{
|
|
}
|
|
}
|