Ejemplo n.º 1
0
 public UserService(OmmiDbContext dbContext,
                    SignInManager <IdentityUser> signInManager,
                    UserManager <IdentityUser> userManager,
                    IConfiguration configuration,
                    IMapper mapper)
 {
     this.context       = dbContext;
     this.signInManager = signInManager;
     this.userManager   = userManager;
     this.configuration = configuration;
     this.mapper        = mapper;
 }
Ejemplo n.º 2
0
 public RoomService(OmmiDbContext dbContext, IMapper autoMapper)
 {
     this.dbContext  = dbContext;
     this.autoMapper = autoMapper;
 }
Ejemplo n.º 3
0
 public BoardStateService(OmmiDbContext dbContext, IMapper autoMapper)
 {
     this.dbContext  = dbContext;
     this.autoMapper = autoMapper;
 }