public UserQueries(CrocusoftProjeDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #2
0
 public RoleRepository(CrocusoftProjeDbContext context)
 {
     Context = context;
 }
Example #3
0
 public RequestManager(CrocusoftProjeDbContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }