Exemplo n.º 1
0
        public MailRepository(RN_TaskManagerContext context, IConfiguration configuration, ILogger <MailRepository> logger) : base(context)
        {
            _context = context;
            _logger  = logger;

            _systemName = configuration["SystemName"];
            _systemUrl  = configuration["SystemUrl"];

            _emailHost     = configuration["Email:Host"];
            _emailPort     = configuration["Email:Port"];
            _emailLogin    = configuration["Email:Login"];
            _emailPassword = configuration["Email:Password"];
            _emailAddress  = configuration["Email:Address"];
        }
Exemplo n.º 2
0
 public TaskTypeRepository(RN_TaskManagerContext context) : base(context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public GroupRepository(RN_TaskManagerContext context) : base(context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public ProjectRepository(RN_TaskManagerContext context) : base(context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public BaseRepository(RN_TaskManagerContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public BlockRepository(RN_TaskManagerContext context) : base(context)
 {
     _context = context;
 }