public HomeController(SamiService service, UserManager <ApplicationUser> userManager)
 {
     this._service     = service;
     this._userManager = userManager;
 }
Exemplo n.º 2
0
 public DataController(SamiService samiService)
 {
     this.samiService = samiService;
 }
Exemplo n.º 3
0
 public SearchDataController(SamiService service)
 {
     this._service = service;
 }
Exemplo n.º 4
0
 public HomeController(SamiService samiService)
 {
     this.samiService = samiService;
 }