Exemplo n.º 1
0
 public UserController(LaboroContext context) : base(context)
 {
 }
Exemplo n.º 2
0
 public ContactsRepository(LaboroContext context) : base(context)
 {
 }
Exemplo n.º 3
0
 public FileManagerController(LaboroContext context, IFileProviderService service) : base(context)
 {
     fileService = service;
 }
Exemplo n.º 4
0
 public BaseController(LaboroContext context)
 {
     this.context = context;
 }
Exemplo n.º 5
0
 public UserService(LaboroContext context)
 {
     this.context = context;
 }
Exemplo n.º 6
0
 public ContactsController(LaboroContext context) : base(context)
 {
 }
Exemplo n.º 7
0
 public FileRepository(LaboroContext context) : base(context)
 {
 }
Exemplo n.º 8
0
 public ChatController(LaboroContext context, IHubContext <MessageHub> hubContext) : base(context)
 {
     hub = hubContext;
 }
Exemplo n.º 9
0
 /// <summary>
 /// Handles the chat API
 /// </summary>
 /// <param name="context"></param>
 public ChatRepository(LaboroContext context) : base(context)
 {
 }
Exemplo n.º 10
0
 public BaseRepository(LaboroContext context)
 {
     this.context = context;
 }
Exemplo n.º 11
0
 public UserRepository(LaboroContext context) : base(context)
 {
 }
Exemplo n.º 12
0
 public AuthenticationController(LaboroContext context, IUserService service) : base(context)
 {
     this.authenticationService = service;
 }