Beispiel #1
0
 public UserRoleService(SoftraySolutionsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Beispiel #2
0
 public BaseCRUDService(SoftraySolutionsContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public AccountService(SoftraySolutionsContext context, IMapper mapper, IHttpContextAccessor accessor)
 {
     _context      = context;
     _mapper       = mapper;
     this.accessor = accessor;
 }
Beispiel #4
0
 public BaseService(SoftraySolutionsContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }