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