Esempio n. 1
0
        public EntityCDto EntityMapping(IEntityC entityC)
        {
            // Comprobamos el parámetro de entrada.
            Guard.ArgumentIsNotNull(
                entityC,
                string.Format(
                    Inflexion2.Resources.Framework.MapperErrorEntityNull,
                    "Entity C")                                 // usar un fichero de recursos para el dominio de negocio Company.Product.BoundedContext.Resources.Business.CategoriaAlias
                );

            EntityCDto entityCDto = new EntityCDto();

            entityCDto.Id   = entityC.Id;
            entityCDto.Name = entityC.Name;
            return(entityCDto);
        }
Esempio n. 2
0
        public EntityCDto EntityMapping(IEntityC entityC)
        {
            // Comprobamos el parámetro de entrada.
            Guard.ArgumentIsNotNull(
                                    entityC,
                                    string.Format(
                                                    Inflexion2.Resources.Framework.MapperErrorEntityNull,
                                                    "Entity C") // usar un fichero de recursos para el dominio de negocio Company.Product.BoundedContext.Resources.Business.CategoriaAlias
                                                 );

            EntityCDto entityCDto = new EntityCDto();

            entityCDto.Id = entityC.Id;
            entityCDto.Name = entityC.Name;
            return entityCDto;
        }
Esempio n. 3
0
 public IEntityC DataMapping(EntityCDto entityADto)
 {
     // este metodo o no se invoca o lo que hace es invocar a la factoria correspondiente.
     throw new System.NotImplementedException();
 }
Esempio n. 4
0
 public IEntityC DataMapping(EntityCDto entityADto)
 {
     // este metodo o no se invoca o lo que hace es invocar a la factoria correspondiente.
     throw new System.NotImplementedException();
 }