Exemple #1
0
 public AppUserAddressController(IAppUserAddressRepository repository)
 {
     _repository = repository;
 }
Exemple #2
0
 public AppUserService(IAppUserRepository appUserRepository, IAppUserAddressRepository appUserAddressRepository, IUnitOfWork unitOfWork) : base()
 {
     this._appUserRepository        = appUserRepository;
     this._appUserAddressRepository = appUserAddressRepository;
     this.unitOfWork = unitOfWork;
 }