// private readonly ITagDataRepository tagDataRepo;
 public AddressRepo(IAddressDataRepository aDataRepo, ITagDataRepository tDataRepo)
 {
     addrDataRepo = aDataRepo;
        // tagDataRepo = tDataRepo;
 }
Exemple #2
0
 public TagDataServices(ITagDataRepository tagdata, INotificador notificador, IUserServices user, ITagRepository tag) : base(notificador, user)
 {
     _tagdata = tagdata;
     _tag     = tag;
 }