public TheColumnsProvider(BL.RunningApp runningapp)
 {
     _app = runningapp;
     //_f = f;
     _lis = new List <BO.TheGridColumn>();
     SetupPallete();
 }
Exemple #2
0
        public Factory(BO.RunningUser c, BL.RunningApp runningapp)
        {
            this.CurrentUser = c;
            this.App         = runningapp;

            if (c.pid == 0 && string.IsNullOrEmpty(c.j03Login) == false)
            {
                InhaleUserByLogin(c.j03Login);
            }
        }
Exemple #3
0
        public ApiController(ILogger <ApiController> logger, BL.RunningApp app)
        {
            _logger = logger;
            _app    = app;
            var c = new BO.RunningUser()
            {
                j03Login = "******"
            };

            _f = new BL.Factory(c, _app);
        }
 public CustomReportSourceResolver(BL.RunningApp app)
 {
     _app = app;
 }
        public ReportsController(IReportServiceConfiguration reportServiceConfiguration, BL.RunningApp app) : base(reportServiceConfiguration)
        {
            var resolver = new CustomReportSourceResolver(app);

            reportServiceConfiguration.ReportSourceResolver = resolver;
        }
 public WeatherForecastController(ILogger <WeatherForecastController> logger, BL.RunningApp app)
 {
     _logger = logger;
     _app    = app;
 }
Exemple #7
0
 public o23Controller(BL.RunningApp app)
 {
     _app = app;
 }
Exemple #8
0
 public TheRobot(ILogger <TheRobot> logger, BL.RunningApp runningapp)
 {
     _logger = logger;
     _app    = runningapp;
 }