コード例 #1
0
 public ReportBL(IReportDAL IReportDAL, IKorisnikBL IKorisnikBL, IObjaveBL IObjaveBL)
 {
     _IReportDAL  = IReportDAL;
     reportovi    = _IReportDAL.getAllReport();
     _IKorisnikBL = IKorisnikBL;
     _IObjaveBL   = IObjaveBL;
 }
コード例 #2
0
 /// <summary>
 /// Creates new instance of Report Data Service
 /// </summary>
 /// <param name="reportDAL">Report DAL</param>
 /// <param name="logger">Event Logger</param>
 public ReportDataService(IReportDAL reportDAL, ILogger <ReportDataService> logger)
 {
     _reportDAL = reportDAL;
     _logger    = logger;
 }
コード例 #3
0
ファイル: ReportView.cs プロジェクト: Maciorus/Kratos
 public ReportView(IReportDAL reportDal)
 {
     _reportDal = reportDal;
 }
コード例 #4
0
 public ReportManager(IReportDAL reportDal)
 {
     _reportDal = reportDal;
 }
コード例 #5
0
 public static void Initialize(string connectionString)
 {
     ReportDB = new DataLayers.SqlServer.ReportDAL(connectionString);
 }
コード例 #6
0
 public ReportManager(IReportDAL reportDAL)
 {
     _reportDAL = reportDAL;
 }
コード例 #7
0
ファイル: ReportBLL.cs プロジェクト: thachgiasoft/winform
 public ReportBLL(Object startupPath)
 {
     DALFactory.StartupPath = startupPath as String;
     dal = DALFactory.CreateReportInstance();
 }
コード例 #8
0
ファイル: ReportBAL.cs プロジェクト: waqasBashir/TMS
 public ReportBAL()
 {
     DAL = new ReportDAL();
 }