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