コード例 #1
0
 public OutletRepository(ILog log)
 {
     m_Log   = log;
     context = new DapperContext();
 }
コード例 #2
0
ファイル: RoleBLL.cs プロジェクト: aerofanz/PSG
 public RoleBLL()
 {
     _context = new DapperContext();
     _uow     = new UnitOfWork(_context);
 }
コード例 #3
0
 public SiswaRepository(IDapperContext context, ILog log)
 {
     this._context = context;
     this._log     = log;
 }
コード例 #4
0
 public ReportMesinKasirRepository(IDapperContext context, ILog log)
 {
     this._context = context;
     this._log     = log;
 }
コード例 #5
0
 public CompanyConfigurationQueries(IDapperContext dapperContext)
     : base(dapperContext)
 {
 }
コード例 #6
0
ファイル: UnitOfWork.cs プロジェクト: xxq860725/SvnManager
 public UnitOfWork(IDapperContext context)
 {
     Context = context;
 }
コード例 #7
0
 /// <summary>
 /// IOC容器使用的构造方法,必须标记为public,供外部使用。
 /// </summary>
 /// <param name="context">数据连接对象</param>
 public ScreenService(IDapperContext context)
     : base(context)
 {
 }
コード例 #8
0
 /// <summary>
 /// IOC容器使用的构造方法,必须标记为public,供外部使用。
 /// </summary>
 /// <param name="context">数据连接对象</param>
 public OperProgressService(IDapperContext context)
     : base(context)
 {
 }
コード例 #9
0
ファイル: Session.cs プロジェクト: vasiliyrozhkov/MvcDepts
 public Session(string connectionString)
 {
     _context = new DapperContext(connectionString);
 }
コード例 #10
0
 public PembayaranHutangProdukRepository(IDapperContext context, ILog log)
 {
     this._context = context;
     this._log     = log;
 }
コード例 #11
0
ファイル: EventRepository.cs プロジェクト: mrsunil/bp2
 /// <summary>
 /// Initializes a new instance of the <see cref="EventRepository"/> class.
 /// </summary>
 /// <param name="dapperContext">Dapper Context.</param>
 public EventRepository(IDapperContext dapperContext)
     : base(dapperContext)
 {
 }
コード例 #12
0
 public ProductRepository(ILog log)
 {
     m_Log   = log;
     context = new DapperContext();
 }
コード例 #13
0
 public ProductRepository()
 {
     context = new DapperContext();
 }
コード例 #14
0
 public LanguageRepository(IDapperContext context) : base(context)
 {
 }
コード例 #15
0
ファイル: AccountingSetUpQueries.cs プロジェクト: mrsunil/bp2
 public AccountingSetUpQueries(IDapperContext dapperContext, IIdentityService identityService)
     : base(dapperContext)
 {
     _identityService = identityService;
     SqlMapper.SetTypeMap(typeof(AccountingSetupDto), new ColumnAttributeTypeMapper <AccountingSetupDto>());
 }
コード例 #16
0
ファイル: Session.cs プロジェクト: vasiliyrozhkov/MvcDepts
 public Session(IDapperContext context)
 {
     _context = context;
 }
コード例 #17
0
 public PembayaranKasbonRepository(IDapperContext context, ILog log)
 {
     this._context = context;
     this._log     = log;
 }
コード例 #18
0
 /// <summary>
 /// IOC容器使用的构造方法,必须标记为public,供外部使用。
 /// </summary>
 /// <param name="context">数据连接对象</param>
 public ScheduleOperScheduleService(IDapperContext context, IScheduleSyncInfoService syncInfoService)
     : base(context)
 {
     SyncInfoService = syncInfoService;
 }
コード例 #19
0
ファイル: SettingService.cs プロジェクト: junindar/Projas
 public SettingService(IDapperContext context, IDbTransaction transaction)
 {
     _context     = context;
     _transaction = transaction;
 }
コード例 #20
0
 public FooterNotaMiniPosRepository(IDapperContext context, ILog log)
 {
     this._context = context;
     this._log     = log;
 }
コード例 #21
0
 public TransactionDataRepository(IDapperContext dapperContext)
     : base(dapperContext)
 {
 }
コード例 #22
0
 public GolonganRepository(IDapperContext context, ILog log)
 {
     this._context = context;
     this._log     = log;
 }
コード例 #23
0
ファイル: FxDealRepository.cs プロジェクト: mrsunil/bp2
 public FxDealRepository(IDapperContext dapperContext)
     : base(dapperContext)
 {
 }
コード例 #24
0
 public BankNccTypeRepository(IDapperContext dapperContext)
     : base(dapperContext)
 {
 }
コード例 #25
0
 public YearEndProcessRepository(IDapperContext dapperContext)
     : base(dapperContext)
 {
 }
コード例 #26
0
 public FreezeRepository(IDapperContext dapperContext)
     : base(dapperContext)
 {
 }
コード例 #27
0
 public ReportPembayaranPiutangJualProdukRepository(IDapperContext context, ILog log)
 {
     this._context = context;
     this._log     = log;
 }
コード例 #28
0
 public JualProdukRepository(IDapperContext context, ILog log)
 {
     this._context = context;
     this._log     = log;
 }
コード例 #29
0
 public PlatformSurgicalMonitorService(IDapperContext context)
     : base(context)
 {
 }
コード例 #30
0
 public OutletRepository()
 {
     context = new DapperContext();
 }