43 lines
976 B
C#
43 lines
976 B
C#
using AutoMapper;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using TTSW.EF;
|
|
using TTSW.Utils;
|
|
using TTSW.Constant;
|
|
using TTSW.Common;
|
|
using TodoAPI2.Models;
|
|
using System.IO;
|
|
using System.Web;
|
|
using System.Net;
|
|
using TTSW.Configure;
|
|
using Microsoft.Extensions.Options;
|
|
using System.Data;
|
|
|
|
namespace TodoAPI2.Models
|
|
{
|
|
public class rep_eva_xService : Irep_eva_xService
|
|
{
|
|
private IBaseRepository<eva_level_scoreEntity, Guid> _repository;
|
|
private IMyDatabase db;
|
|
private Iexternal_linkageService ext;
|
|
|
|
public rep_eva_xService(IBaseRepository<eva_level_scoreEntity, Guid> repository, IMyDatabase mydb, Iexternal_linkageService inext)
|
|
{
|
|
_repository = repository;
|
|
db = mydb;
|
|
ext = inext;
|
|
}
|
|
|
|
public rep_eva_xWithSelectionViewModel GetBlankItem()
|
|
{
|
|
var i = new rep_eva_xWithSelectionViewModel();
|
|
|
|
|
|
return i;
|
|
}
|
|
}
|
|
}
|
|
|