Beispiel #1
0
 public UsersController(UserManager <User> userManager, SignInManager <User> signInManager, IMapper mapper
                        , IConfiguration config, CRMReposetory reposetory)
 {
     this.userManager   = userManager;
     this.signInManager = signInManager;
     this.mapper        = mapper;
     this.config        = config;
     this.reposetory    = reposetory;
 }
Beispiel #2
0
 public StatusesController(CRMReposetory reposetory)
 {
     this.reposetory = reposetory;
 }
Beispiel #3
0
 public ResourcesController(CRMReposetory reposetory)
 {
     this.reposetory = reposetory;
 }
Beispiel #4
0
 public ProcessesController(CRMReposetory reposetory, IMapper mapper)
 {
     this.reposetory = reposetory;
     this.mapper     = mapper;
 }
Beispiel #5
0
 public TasksController(CRMReposetory reposetory, IMapper mapper)
 {
     this.context = reposetory;
     this.mapper  = mapper;
 }
Beispiel #6
0
 public TypesController(CRMReposetory reposetory)
 {
     this.reposetory = reposetory;
 }