示例#1
0
 public RaporlarController(IUnitofWork uow, IRaporlarService raporService, IMuhtelifIslemlerService muhtelifServis)
     : base(uow)
 {
     _uow            = uow;
     _raporService   = raporService;
     _muhtelifServis = muhtelifServis;
 }
示例#2
0
        //private readonly IGenericRepository<muhtelif_islemler> _muhtelifIslemler;

        public MuhtelifController(IUnitofWork uow, IKasaService kasaService, IBankaService bankaService, IMuhtelifBasliklarService muhtelifBasliklarService, IMuhtelifIslemlerService muhtelifIslemlerService)
            : base(uow)
        {
            _uow                      = uow;
            _kasaService              = kasaService;
            _bankaService             = bankaService;
            _muhtelifBasliklarService = muhtelifBasliklarService;
            _muhtelifIslemlerService  = muhtelifIslemlerService;
            _muhtelifBasliklar        = _uow.GetRepository <muhtelif_baslikler>();
        }