public TbPrTrasladoInventario ViewModelToDomain(TrasladoInventarioViewModel viewModel) { return(new TbPrTrasladoInventario { IdTraslado = viewModel.IdTraslado, IdInventario = viewModel.IdInventario, CodigoArticulo = viewModel.CodigoArticulo, Descripcion = viewModel.Descripcion, Cantidad = viewModel.Cantidad, PrecioUnitario = viewModel.PrecioUnitario, CostoTotal = viewModel.CostoTotal, }); }
public TbPrTrasladoInventario ViewModelToDomainEditar(TrasladoInventarioViewModel viewModel) { throw new NotImplementedException(); }
public TbPrTrasladoInventario Update(TrasladoInventarioViewModel viewModel) { throw new NotImplementedException(); }
public TbPrTrasladoInventario Create(TrasladoInventarioViewModel viewModel) { return(service.Save(ViewModelToDomain(viewModel))); }