cambiado internal x public
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.vs/ProjectEvaluation/final_oop.metadata.v5.2
Normal file
BIN
.vs/ProjectEvaluation/final_oop.metadata.v5.2
Normal file
Binary file not shown.
BIN
.vs/ProjectEvaluation/final_oop.projects.v5.2
Normal file
BIN
.vs/ProjectEvaluation/final_oop.projects.v5.2
Normal file
Binary file not shown.
@@ -11,7 +11,7 @@
|
||||
"projectName": "Controladora",
|
||||
"projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
|
||||
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Nacho\\Source\\Repos\\Final_OOP\\Controladora\\obj\\",
|
||||
"outputPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Controladora\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "140GQtxtriF311DaiieaDmJ7ak0iQV6xE1oZAEWCfylxdH5wonwlzBX1b52fBGkwqH0ImewKn7GUDfiemxqKiA==",
|
||||
"dgSpecHash": "kyd3Up4G3xA0XRA0uoTKtmbqMio44L5JJmgH1pQEI9tW2lbH6lFZsBZhWxSBuIEkUXZUvKsrJeUVINIi4RMprA==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Categoria
|
||||
public class Categoria
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Cliente
|
||||
public class Cliente
|
||||
{
|
||||
public string Cuit { get; set; }
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class DetalleFactura
|
||||
public class DetalleFactura
|
||||
{
|
||||
public int IdFactura { get; set; }
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class DetalleOrdenDeCompra
|
||||
public class DetalleOrdenDeCompra
|
||||
{
|
||||
public int IdOrdenDeCompra { get; set; }
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class DetallePedido : Detalle <T>
|
||||
public class DetallePedido : Detalle <T>
|
||||
{
|
||||
public int IdPedido { get; set; }
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class DetallePresupuesto
|
||||
public class DetallePresupuesto
|
||||
{
|
||||
public int IdPresupuesto { get; set; }
|
||||
public double CostoUnitario { get; set; }
|
||||
|
||||
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Factura
|
||||
public class Factura
|
||||
{
|
||||
public double Total { get; set; }
|
||||
public DateTime Fecha { get; set; }
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Lote
|
||||
public class Lote
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class OrdenDeCompra
|
||||
public class OrdenDeCompra
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
@@ -7,8 +7,12 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class PedidoDePresupuesto
|
||||
public class PedidoDePresupuesto
|
||||
{
|
||||
public PedidoDePresupuesto()
|
||||
{
|
||||
detallesPedidos = new List<DetallePedido>();
|
||||
}
|
||||
public int Id { get; set; }
|
||||
|
||||
public DateTime Fecha { get; set; }
|
||||
|
||||
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Presupuesto
|
||||
public class Presupuesto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Producto
|
||||
public class Producto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class ProductoPercedero
|
||||
public class ProductoPercedero
|
||||
{
|
||||
public int MesesHastaConsumoPreferente { get; set; }
|
||||
public int MesesHastaVencimiento { get; set; }
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Proveedor
|
||||
public class Proveedor
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Entidades
|
||||
{
|
||||
internal class Remito
|
||||
public class Remito
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"projectName": "Modelo",
|
||||
"projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
|
||||
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Nacho\\Source\\Repos\\Final_OOP\\Modelo\\obj\\",
|
||||
"outputPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Modelo\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "yCpP6BPpuRXuofATVjtKmfhwUZrb2GPo991luvSdq/4autcaFU4YO7LtiPjZL2G6wWMNzzjcoV/PWwpAeT1Rww==",
|
||||
"dgSpecHash": "aHtOZw9pG9gy1bspn3saPFfHJ4ep913GheOLLLyVu/RXjAdz+XbKTIttxPEbAsZ7IXLAyw40caVnLHSCWsKjYA==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"projectName": "Vista",
|
||||
"projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Vista\\Vista.csproj",
|
||||
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Nacho\\Source\\Repos\\Final_OOP\\Vista\\obj\\",
|
||||
"outputPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Vista\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "sxAlnK8kqG49TG7auamL3JNePu/HJD0xU6R4+XkcFQYuUWkucBmICEdtCGCih+UlUCQHlI0zBm3UwUWPp8J1kw==",
|
||||
"dgSpecHash": "nD5Pv8z7W+YlO/hCpkE2DFOR8y9jkfXD1q/PjhomB+OW4xhxUSpb0rkE2NXtheQPyXG/RcBYkPvvf7D7mdcATA==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Vista\\Vista.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
|
||||
Reference in New Issue
Block a user