cambiado internal x public

This commit is contained in:
Ignacio Jesús Diana
2024-02-24 17:19:58 -03:00
parent 0b073d51b9
commit 65c8469c92
38 changed files with 25 additions and 21 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -11,7 +11,7 @@
"projectName": "Controladora", "projectName": "Controladora",
"projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj", "projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\", "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", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"

View File

@@ -1,6 +1,6 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "140GQtxtriF311DaiieaDmJ7ak0iQV6xE1oZAEWCfylxdH5wonwlzBX1b52fBGkwqH0ImewKn7GUDfiemxqKiA==", "dgSpecHash": "kyd3Up4G3xA0XRA0uoTKtmbqMio44L5JJmgH1pQEI9tW2lbH6lFZsBZhWxSBuIEkUXZUvKsrJeUVINIi4RMprA==",
"success": true, "success": true,
"projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj", "projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
"expectedPackageFiles": [], "expectedPackageFiles": [],

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class Categoria public class Categoria
{ {
public int Id { get; set; } public int Id { get; set; }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class Cliente public class Cliente
{ {
public string Cuit { get; set; } public string Cuit { get; set; }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class DetalleFactura public class DetalleFactura
{ {
public int IdFactura { get; set; } public int IdFactura { get; set; }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class DetalleOrdenDeCompra public class DetalleOrdenDeCompra
{ {
public int IdOrdenDeCompra { get; set; } public int IdOrdenDeCompra { get; set; }
} }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class DetallePedido : Detalle <T> public class DetallePedido : Detalle <T>
{ {
public int IdPedido { get; set; } public int IdPedido { get; set; }
} }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class DetallePresupuesto public class DetallePresupuesto
{ {
public int IdPresupuesto { get; set; } public int IdPresupuesto { get; set; }
public double CostoUnitario { get; set; } public double CostoUnitario { get; set; }

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class Factura public class Factura
{ {
public double Total { get; set; } public double Total { get; set; }
public DateTime Fecha { get; set; } public DateTime Fecha { get; set; }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class Lote public class Lote
{ {
public int Id { get; set; } public int Id { get; set; }

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class OrdenDeCompra public class OrdenDeCompra
{ {
public int Id { get; set; } public int Id { get; set; }

View File

@@ -7,8 +7,12 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class PedidoDePresupuesto public class PedidoDePresupuesto
{ {
public PedidoDePresupuesto()
{
detallesPedidos = new List<DetallePedido>();
}
public int Id { get; set; } public int Id { get; set; }
public DateTime Fecha { get; set; } public DateTime Fecha { get; set; }

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class Presupuesto public class Presupuesto
{ {
public int Id { get; set; } public int Id { get; set; }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class Producto public class Producto
{ {
public int Id { get; set; } public int Id { get; set; }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class ProductoPercedero public class ProductoPercedero
{ {
public int MesesHastaConsumoPreferente { get; set; } public int MesesHastaConsumoPreferente { get; set; }
public int MesesHastaVencimiento { get; set; } public int MesesHastaVencimiento { get; set; }

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class Proveedor public class Proveedor
{ {
public int Id { get; set; } public int Id { get; set; }

View File

@@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace Entidades namespace Entidades
{ {
internal class Remito public class Remito
{ {
public int Id { get; set; } public int Id { get; set; }

View File

@@ -11,7 +11,7 @@
"projectName": "Modelo", "projectName": "Modelo",
"projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj", "projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\", "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", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"

View File

@@ -1,6 +1,6 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "yCpP6BPpuRXuofATVjtKmfhwUZrb2GPo991luvSdq/4autcaFU4YO7LtiPjZL2G6wWMNzzjcoV/PWwpAeT1Rww==", "dgSpecHash": "aHtOZw9pG9gy1bspn3saPFfHJ4ep913GheOLLLyVu/RXjAdz+XbKTIttxPEbAsZ7IXLAyw40caVnLHSCWsKjYA==",
"success": true, "success": true,
"projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj", "projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
"expectedPackageFiles": [], "expectedPackageFiles": [],

View File

@@ -11,7 +11,7 @@
"projectName": "Vista", "projectName": "Vista",
"projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Vista\\Vista.csproj", "projectPath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Vista\\Vista.csproj",
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\", "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", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"

View File

@@ -1,6 +1,6 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "sxAlnK8kqG49TG7auamL3JNePu/HJD0xU6R4+XkcFQYuUWkucBmICEdtCGCih+UlUCQHlI0zBm3UwUWPp8J1kw==", "dgSpecHash": "nD5Pv8z7W+YlO/hCpkE2DFOR8y9jkfXD1q/PjhomB+OW4xhxUSpb0rkE2NXtheQPyXG/RcBYkPvvf7D7mdcATA==",
"success": true, "success": true,
"projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Vista\\Vista.csproj", "projectFilePath": "C:\\Users\\Nacho\\source\\repos\\Final_OOP\\Vista\\Vista.csproj",
"expectedPackageFiles": [], "expectedPackageFiles": [],