Posts

Showing posts from February, 2021

Transaction services

 using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using MIND.BusinessEntities; using MIND.BusinessServices.Interface; using MIND.Configuration; using MIND.DAL; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.IO; using System.Text; using System.Threading.Tasks; namespace MIND.BusinessServices.Services {     public class TransactionService : DataAccess, ITransactionService     {         public TransactionService(IConfiguration Configuration) : base(Configuration) { }         #region Employee Review Process         public async Task<EmployeeCompetencyTypeDetails> GetEmployeeCompetencyTypeDetails(Search Search)         {             Status Status = new Status();             EmployeeCompetencyTypeDetails ObjempDetails = new EmployeeCompetencyTypeDetails();             List<EmployeeCompetencyType> EmployeeList = new List<EmployeeCompetencyT