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