public AracService(IAracRepository aracRepository,
                    ILookupListRepository lookupListRepository,
                    IKullaniciRepository kullaniciRepository)
 {
     _aracRepository       = aracRepository;
     _lookupListRepository = lookupListRepository;
     _kullaniciRepository  = kullaniciRepository;
 }
 public MusteriService(IMusteriRepository musteriRepository,
                       IKullaniciRepository kullaniciRepository,
                       ILookupListRepository lookupListRepository)
 {
     _musteriRepository    = musteriRepository;
     _kullaniciRepository  = kullaniciRepository;
     _lookupListRepository = lookupListRepository;
 }
Exemple #3
0
 public BakimTalebiService(IBakimTalebiRepository bakimTalebiRepository,
                           IKullaniciRepository kullaniciRepository,
                           ILookupListRepository lookupListRepository,
                           IAracRepository aracRepository,
                           IMailService mailService)
 {
     _bakimTalebiRepository = bakimTalebiRepository;
     _kullaniciRepository   = kullaniciRepository;
     _lookupListRepository  = lookupListRepository;
     _aracRepository        = aracRepository;
     _mailService           = mailService;
 }