using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Extensions.Configuration; using TaskManager.Entity; using TaskManager.EntityFramework; namespace Wood.Service.Controllers { public class TaskAllocationService : NormalBaseController { public TaskAllocationService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository repository) : base(context, builder, configuration, repository) { } } }