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