12 lines
259 B
C#
12 lines
259 B
C#
using Marco.Pms.Model.Activities;
|
|
|
|
namespace Marco.Pms.DataAccess.Repository.IRepository
|
|
{
|
|
|
|
public interface ITaskAllocationRepository : IRepository<TaskAllocation>
|
|
{
|
|
void Update(TaskAllocation employeeAllocation);
|
|
}
|
|
|
|
}
|