Esempio n. 1
0
 public EntitiesController(IEntityDao entityDao)
 {
     _entityDao = entityDao;
 }
Esempio n. 2
0
 public EntityServiceClient(IApplicationState applicationState, ICacheService cacheService, IEntityDao entityDao)
 {
     _applicationState = applicationState;
     _cacheService     = cacheService;
     _entityDao        = entityDao;
 }
Esempio n. 3
0
 public EntityScreenViewModel(IEntityDao entityDao)
 {
     _entityDao = entityDao;
     SelectScreenItemsCommand = new CaptionCommand <string>(string.Format(Resources.Select_f, Resources.Entity), OnSelectScreenItems, CanSelectScreenItems);
 }
Esempio n. 4
0
 public EntityServiceClient(IApplicationState applicationState, ICacheService cacheService, IEntityDao entityDao)
 {
     _applicationState = applicationState;
     _cacheService = cacheService;
     _entityDao = entityDao;
 }
Esempio n. 5
0
 public EntityService(IEntityDao entityDao)
 {
     _entityDao = entityDao;
 }
Esempio n. 6
0
 public EntityService(IEntityDao entityDao, IAutomationService automationService, ICacheService cacheService)
 {
     _entityDao = entityDao;
     _automationService = automationService;
     _cacheService = cacheService;
 }
Esempio n. 7
0
 public MarcaCrudService(IEntityDao <Marca> marcaDao, IEntityValidator entityValidator)
     : base(entityValidator)
 {
     _marcaDao = marcaDao;
 }
 public ResourcesController(IEntityDao resourceDao)
 {
     _resourceDao = resourceDao;
 }
Esempio n. 9
0
 public EntityService(IEntityDao entityDao)
 {
     _entityDao = entityDao;
 }
Esempio n. 10
0
 public EntitiesController(IEntityDao entityDao)
 {
     _entityDao = entityDao;
 }
 public OneToOneMigrationService()
 {
     this.dynamicRecordDao = new DynamicRecordDao();
     this.entityDao = new EntityDao();
 }
Esempio n. 12
0
 public ModeloCrudService(IEntityDao <Modelo> modeloaDao, IEntityValidator entityValidator)
     : base(entityValidator)
 {
     _modeloDao = modeloaDao;
 }