示例#1
0
 public ControlPanelContactsController(IOperationContactsService operationContactsService,
                                       ICatalogService catalogService)
 {
     _operationContactsService = operationContactsService;
     _catalogService           = catalogService;
     _viewModelMapperHelper    = new ViewModelMapperHelper(_operationContactsService,
                                                           _catalogService);
 }
示例#2
0
        public ContactsController(IOperationContactsService operationContactsService,
                                  ICatalogService catalogService,
                                  IAuthorizationManager authorizationManager)
        {
            _operationContactsService = operationContactsService;
            _catalogService           = catalogService;
            _authorizationManager     = authorizationManager;

            _viewModelMapperHelper = new ViewModelMapperHelper(_operationContactsService,
                                                               _catalogService);
        }
 public ViewModelMapperHelper(IOperationContactsService operationContactsService, ICatalogService catalogService)
 {
     _operationContactsService = operationContactsService;
     _catalogService           = catalogService;
 }