SQLLite vol 1.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WorkFlowCheck.MAUI.DataLayer;
|
||||
|
||||
namespace WorkFlowCheck.MAUI.Services
|
||||
{
|
||||
public class SyncService: ISyncService
|
||||
{
|
||||
private readonly HttpClient _httpClient;
|
||||
private readonly AppDbContext _dbContext;
|
||||
|
||||
public SyncService(HttpClient httpClient, AppDbContext dbContext)
|
||||
{
|
||||
_httpClient = httpClient;
|
||||
_dbContext = dbContext;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user