public CreateModel(IReportsService reportsService,
                    IFirmsService firmsService,
                    IMapper mapper,
                    UserManager <UnprofessionalsAppUser> userManager)
 {
     this.reportsService = reportsService;
     this.firmsService   = firmsService;
     this.mapper         = mapper;
     this.userManager    = userManager;
 }
Beispiel #2
0
 public PostsService(IRepository <Post> postsRepository,
                     IRepository <Tag> tagsRepository,
                     IRepository <TagPost> tagsPostsRepository,
                     IFirmsService firmsService,
                     IMapper mapper)
 {
     this.postsRepository     = postsRepository;
     this.tagsRepository      = tagsRepository;
     this.tagsPostsRepository = tagsPostsRepository;
     this.firmsService        = firmsService;
     this.mapper = mapper;
 }
Beispiel #3
0
 public CreateModel(IFilesService filesService, IFirmsService firmsService)
 {
     this.filesService = filesService;
     this.firmsService = firmsService;
 }
 public IndexModel(IFirmsService firmsService)
 {
     this.firmsService = firmsService;
 }
Beispiel #5
0
 public FirmsController(IFirmsService firmsService)
 {
     this.firmsService = firmsService;
 }