Ejemplo n.º 1
0
 public CommonService(ICommonRepository commonRepo, IUserRepository userRepo, IUntaggedUPCRepository untaggedUPCRepo, ITaggedUPCService taggedUPCService)
 {
     _commonRepo       = commonRepo;
     _userRepo         = userRepo;
     _taggedUPCService = taggedUPCService;
     _untaggedUPCRepo  = untaggedUPCRepo;
 }
Ejemplo n.º 2
0
 public DashboardController(IUntaggedUPCService untaggedUPCService, ICommonService commonService,
                            ITaggedUPCService taggedUPCService)
 {
     _untaggedUPCService = untaggedUPCService;
     _commonService      = commonService;
     _taggedUPCService   = taggedUPCService;
 }