public BaseCRUDService(TasksProjectDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Esempio n. 2
0
 public BaseService(TasksProjectDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }