You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IGetAboutTelsServise.cs 283B

2 years ago
1234567891011
  1. using System.Collections.Generic;
  2. using System.Text;
  3. using System.Threading.Tasks;
  4. namespace Karsha_Site.Application.Services.About.Queries.GetAboutTels
  5. {
  6. public interface IGetAboutTelsServise
  7. {
  8. ResultAboutTelsDto Execute(RequestGetAboutTelsDto request);
  9. }
  10. }