Advertisement
Fhernd

ArticuloBodega.cs

Oct 20th, 2017
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. using RiveraHuila.App.Persistencia.Modelo;
  2.  
  3. namespace RiveraHuila.App.Servicio.Models
  4. {
  5.     public class ArticuloBodega
  6.     {
  7.         public Articulo Articulo
  8.         {
  9.             get;
  10.             set;
  11.         }
  12.         public Bodega Bodega
  13.         {
  14.             get;
  15.             set;
  16.         }
  17.  
  18.         public int? CantidadDisponible
  19.         {
  20.             get;
  21.             set;
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement