You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
691 B
C#
27 lines
691 B
C#
using Admin.Core.IRepository;
|
|
using Admin.Core.IService;
|
|
using Admin.Core.Model;
|
|
using Admin.Core.Model.ViewModels;
|
|
using Admin.Core.Service;
|
|
using log4net;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.IService
|
|
{
|
|
/// <summary>
|
|
/// SysUserInfoServices
|
|
/// </summary>
|
|
public class CurrentTeamTimeServices : BaseServices<CurrentTeamTime>, ICurrentTeamTimeServices
|
|
{
|
|
private readonly IBaseRepository<CurrentTeamTime> _dal;
|
|
public CurrentTeamTimeServices(IBaseRepository<CurrentTeamTime> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
|
|
}
|
|
} |