summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Logic/BancosContasRepository.cs
blob: 53fa20c5de2eca57798e3686da61acde141250f0 (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
using AutoMapper;
using Gestor.Infrastructure.Entities.Financeiro;
using Gestor.Infrastructure.Entities.Generic;
using Gestor.Infrastructure.Helpers;
using Gestor.Infrastructure.Mappers;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Infrastructure.Repository.Interface;
using Gestor.Infrastructure.UnitOfWork.Generic;
using Gestor.Model.Domain.Financeiro;
using NHibernate;
using NHibernate.Connection;
using NHibernate.Impl;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;

namespace Gestor.Infrastructure.Repository.Logic
{
	public class BancosContasRepository : GenericRepository<BancosContasDb>, IBancosContasRepository, IGenericRepository<BancosContasDb>
	{
		private readonly GenericUnitOfWork _unitOfWork;

		public BancosContasRepository(GenericUnitOfWork unitOfWork) : base(unitOfWork.Session)
		{
			this._unitOfWork = unitOfWork;
		}

		public void Delete(long id)
		{
			List<SaldoDb> list = (
				from x in this._unitOfWork.Query<SaldoDb>()
				where x.Conta.Id == id
				select x).ToList<SaldoDb>();
			if (list.Any<SaldoDb>())
			{
				this._unitOfWork.Repository<SaldoDb>().DeleteRange(list);
			}
			BancosContasDb bancosContasDb = base.FindEntityById(id);
			if (bancosContasDb == null)
			{
				return;
			}
			base.Delete(bancosContasDb);
		}

		public List<BancosContas> Find(string filter)
		{
			return this.Select(" AND ISNULL(UPPER(descricao)) LIKE '%filter%'");
		}

		public List<BancosContas> Find()
		{
			return this.Select("");
		}

		public BancosContas FindById(long id)
		{
			BancosContasDb bancosContasDb = base.FindEntityById(id);
			return ApplicationMapper.Mapper.Map<BancosContasDb, BancosContas>(bancosContasDb);
		}

		public BancosContas Merge(BancosContas bancosContas)
		{
			BancosContasDb bancosContasDb = ApplicationMapper.Mapper.Map<BancosContas, BancosContasDb>(bancosContas);
			base.Merge(bancosContasDb);
			return ApplicationMapper.Mapper.Map<BancosContasDb, BancosContas>(bancosContasDb);
		}

		public BancosContas SaveOrUpdate(BancosContas bancosContas)
		{
			BancosContasDb bancosContasDb = ApplicationMapper.Mapper.Map<BancosContas, BancosContasDb>(bancosContas);
			this.SaveOrUpdate(bancosContasDb);
			return ApplicationMapper.Mapper.Map<BancosContasDb, BancosContas>(bancosContasDb);
		}

		private List<BancosContas> Select(string condition)
		{
			List<BancosContas> bancosContas;
			object connection;
			DataTable dataTable = new DataTable();
			SessionFactoryImpl sessionFactory = this._unitOfWork.Session.SessionFactory as SessionFactoryImpl;
			if (sessionFactory != null)
			{
				connection = sessionFactory.ConnectionProvider.GetConnection();
			}
			else
			{
				connection = null;
			}
			using (SqlConnection sqlConnection = connection as SqlConnection)
			{
				using (SqlCommand sqlCommand = sqlConnection.CreateCommand())
				{
					Auxiliar.CriarAuxiliar(sqlCommand, false);
					sqlCommand.CommandText = string.Concat("SELECT * FROM conta WHERE 1=1 ", condition);
					using (SqlDataAdapter sqlDataAdapter = new SqlDataAdapter())
					{
						sqlDataAdapter.SelectCommand = sqlCommand;
						sqlDataAdapter.Fill(dataTable);
					}
					if (dataTable.Rows.Count != 0)
					{
						return CustomMap.MapConta(dataTable);
					}
					else
					{
						bancosContas = new List<BancosContas>();
					}
				}
			}
			return bancosContas;
		}
	}
}