public ExampleController(INotificationHandler notifications,
                          IMapper mapper,
                          IUser user,
                          IExampleBusiness exampleBusiness,
                          IExampleRepository exampleRepository) : base(notifications, user)
 {
     _mapper            = mapper;
     _exampleBusiness   = exampleBusiness;
     _exampleRepository = exampleRepository;
 }
Ejemplo n.º 2
0
 public ExampleServiceImpl(IExampleBusiness business)
 {
     _business = business;
 }