-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContratosImpl.cs
66 lines (53 loc) · 2 KB
/
ContratosImpl.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using Fivet.Dao;
using Fivet.ZeroIce.model;
using Ice;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Fivet.ZeroIce
{
public class ContratosImpl : ContratosDisp_
{
private readonly ILogger<ContratosImpl> _logger;
private readonly IServiceScopeFactory _serviceScopeFactory;
public ContratosImpl(ILogger<ContratosImpl> logger,IServiceScopeFactory serviceScopeFactory)
{
_logger = logger;
_logger.LogDebug("Building the ContratosImpl ... ");
_serviceScopeFactory = serviceScopeFactory;
_logger.LogInformation("Creating the database ... ");
using (var scope = _serviceScopeFactory.CreateScope())
{
FivetContext fc = scope.ServiceProvider.GetService<FivetContext>();
fc.Database.EnsureCreated();
fc.SaveChanges();
}
_logger.LogDebug("Done ...");
}
public override Ficha crearFicha(Ficha ficha, Current current = null)
{
throw new System.NotImplementedException();
}
public override Persona crearPersona(Persona persona, Current current = null)
{
using (var scope = _serviceScopeFactory.CreateScope())
{
FivetContext fc = scope.ServiceProvider.GetService<FivetContext>();
fc.Personas.Add(persona);
fc.SaveChanges();
return persona;
}
}
public override Control crearControl(int numeroFicha, Control control, Current current= null)
{
throw new System.NotImplementedException();
}
public override Ficha obtenerFicha(int numero, Current current= null)
{
throw new System.NotImplementedException();
}
public override Persona obtenerPersona(string rut, Current current = null)
{
throw new System.NotImplementedException();
}
}
}