using ConstructorApp.EntityLayer.Entities; namespace ConstructorApp.BusinessLayer.Abstract { public interface ITestimonialService : IGenericService { void TTestimonialStatusActive(int id); void TTestimonialStatusPassive(int id); int TCountAll(); } }