Ejemplo n.º 1
0
 public AuditLogService(IRepository <AuditLog> auditLogRepository,
                        WorkflowDemoContext WorkflowDemoContext
                        )
 {
     _WorkflowDemoContext = WorkflowDemoContext;
     _auditLogRepository  = auditLogRepository;
 }
Ejemplo n.º 2
0
 public SystemRepository(WorkflowDemoContext context)
 {
     this.Context = context;
 }
Ejemplo n.º 3
0
 public LogHelper(WorkflowDemoContext context, IRepository <AuditLog> logRepository)
 {
     _context       = context;
     _logRepository = logRepository;
 }
Ejemplo n.º 4
0
 public FormService(WorkflowDemoContext context, IRepository <Form> formRepository)
 {
     this.context        = context;
     this.formRepository = formRepository;
 }
Ejemplo n.º 5
0
 public CommonService(WorkflowDemoContext WorkflowDemoContext)
 {
     _WorkflowDemoContext = WorkflowDemoContext;
 }
Ejemplo n.º 6
0
 public AdminstrationRepository(WorkflowDemoContext context, IConfiguration configuration)
 {
     Context       = context;
     Configuration = configuration;
 }
Ejemplo n.º 7
0
 public RegistrationRepository(WorkflowDemoContext context)
 {
     this.Context = context;
 }
 /// <summary>
 ///
 /// </summary>
 /// <param name="context"></param>
 public RepositoryWithoutEntityBase(WorkflowDemoContext context, IHttpContextAccessor httpContextAccessor)
 {
     this._context        = context;
     this.CurrentUserName = httpContextAccessor.HttpContext?.User?.Identity?.Name ?? "";
 }
Ejemplo n.º 9
0
 public SetupRepository(WorkflowDemoContext context)
 {
     Context = context;
 }
Ejemplo n.º 10
0
 public UserService(WorkflowDemoContext context, IHttpContextAccessor accessor)
 {
     _context  = context;
     _accessor = accessor;
 }
Ejemplo n.º 11
0
 public AuthRepository(WorkflowDemoContext context)
 {
     this.Context = context;
 }