Skip to content

Commit 6c5aae7

Browse files
committed
Initial commit
1 parent c999e66 commit 6c5aae7

File tree

441 files changed

+125393
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

441 files changed

+125393
-0
lines changed

Diff for: BibliotecaXPTO.bak

5.52 MB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" />
9+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
10+
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
11+
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
12+
</ItemGroup>
13+
14+
<ItemGroup>
15+
<ProjectReference Include="..\..\LibBD\LibBD.csproj" />
16+
<ProjectReference Include="..\..\LibUtils\LibUtils.csproj" />
17+
</ItemGroup>
18+
19+
</Project>

Diff for: BibliotecaXPTO/BibliotecaXPTO_Lib/Book.cs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace BibliotecaXPTO_Lib
6+
{
7+
public class Book
8+
{
9+
private int id;
10+
private string isbn;
11+
private string title;
12+
private string author;
13+
private byte[] img;
14+
15+
public int Id { get => id; set => id = value; }
16+
public string Isbn { get => isbn; set => isbn = value; }
17+
public string Title { get => title; set => title = value; }
18+
public string Author { get => author; set => author = value; }
19+
public byte[] Img { get => img; set => img = value; }
20+
21+
}
22+
}

Diff for: BibliotecaXPTO/BibliotecaXPTO_Lib/Nucleo.cs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace BibliotecaXPTO_Lib
6+
{
7+
public class Nucleo
8+
{
9+
private int id;
10+
private string city;
11+
12+
public int Id { get => id; set => id = value; }
13+
public string City { get => city; set => city = value; }
14+
}
15+
}

0 commit comments

Comments
 (0)