Ejemplo n.º 1
0
 public ImportMfuFileHandler(MFUContext dbContext, IConfiguration configuration)
 {
     this.dbContext     = dbContext;
     this.configuration = configuration;
 }
Ejemplo n.º 2
0
 public ExportMfuFileHandler(MFUContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 3
0
 public GetOptionByIdHandler(MFUContext dbContext, MFUOperationsHelper mFUOperationsHelper)
 {
     this.dbContext           = dbContext;
     this.mFUOperationsHelper = mFUOperationsHelper;
 }
Ejemplo n.º 4
0
 public GetOptionHistoriesHandler(MFUContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 5
0
 public GetExcelFileListHandler(MFUContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 6
0
 public UpdateExcelFileHandler(MFUContext dbContext, MFUOperationsHelper mFUOperationsHelper)
 {
     this.dbContext           = dbContext;
     this.mFUOperationsHelper = mFUOperationsHelper;
 }
Ejemplo n.º 7
0
 public GetMfuSwiftInfoListHandler(MFUContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 8
0
 public GetMfuFilesHandler(MFUContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 9
0
 public UpdateOptionHandler(MFUContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 10
0
 public ExportExcelFileHandler(MFUContext dbContext, MFUOperationsHelper mFUOperationsHelper, IConfiguration configuration)
 {
     this.dbContext           = dbContext;
     this.mFUOperationsHelper = mFUOperationsHelper;
     this.configuration       = configuration;
 }