WIP: process layers

This commit is contained in:
Michał Zieliński
2023-09-17 13:00:24 +02:00
parent 40122314b2
commit 5cb362b5e0
7 changed files with 200 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
using Google.Apis.Sheets.v4;
using System.Globalization;
using WebAPI.Models;
namespace WebAPI.dataProcessors
{
public class copyProcessor
{
private AppDbContext db;
public copyProcessor(
AppDbContext _db)
{
db = _db;
}
public Layer process()
{
return null;
}
}
}