generated from wenjy/SlnMesnac
14 lines
384 B
Plaintext
14 lines
384 B
Plaintext
using SlnMesnac.Model.domain;
|
|
using SlnMesnac.Repository.service.@base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ${NameSpace}.service.Impl
|
|
{
|
|
public class ${tableName}ServiceImpl : BaseServiceImpl<${tableName}>, I${tableName}Services
|
|
{
|
|
public ${tableName}ServiceImpl(Repository<${tableName}> repository):base(repository)
|
|
{
|
|
}
|
|
}
|
|
} |