12 lines
303 B
C#
12 lines
303 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.BusinessLayer.Abstract
|
|
{
|
|
public interface ITestimonialService : IGenericService<Testimonial>
|
|
{
|
|
void TTestimonialStatusActive(int id);
|
|
void TTestimonialStatusPassive(int id);
|
|
int TCountAll();
|
|
}
|
|
}
|