10 lines
184 B
C#
10 lines
184 B
C#
using Entities.Contracts;
|
|
using TechHelper.Services;
|
|
|
|
namespace TechHelper.Server.Services
|
|
{
|
|
public interface IAssignmentGroupService : IBaseService<AssignmentGroup, Guid>
|
|
{
|
|
}
|
|
}
|