public LokasyonController(ILokasyonAppService srv,
                           IMapper <AvLokasyon, LokasyonCrudViewModel> crudMapper, IMapper <AvLokasyon, LokasyonListViewModel> listMapper,
                           IMapper <AvLokasyon, LokasyonSelectListViewModel> selectListMapper)
     : base(srv, crudMapper, listMapper, selectListMapper)
 {
     _service    = srv;
     CrudOnIndex = true;
     AutoFilter  = true;
 }
Esempio n. 2
0
 public ServerController(Application.Main.Interfaces.SunucuEnvanter.ISunucuEnvanterServerAppService srv,
                         IMapper <AvServer, ServerCrudViewModel> crudMapper, IMapper <AvServer, ServerListViewModel> listMapper, IMapper <AvServer, ServerSelectListViewModel> selectListMapper,
                         IServerTipiAppService service1, ILokasyonAppService service2, IOperatingSystemAppService service3, IYoneticiServerAppService service4, ISunucuEnvanterLinkedServers service5,
                         ISunucuEnvanterAppService service6)
     : base(srv, crudMapper, listMapper, selectListMapper)
 {
     _service = srv;
     _serverTipiAppService      = service1;
     _lokasyonAppService        = service2;
     _operatingSystemAppService = service3;
     _yoneticiServerService     = service4;
     _linkedService             = service5;
     _appService = service6;
     CrudOnIndex = true;
     AutoFilter  = true;
 }