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