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.

IGetAboutAddressServise.cs 295B

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.GetAboutAddress
  5. {
  6. public interface IGetAboutAddressServise
  7. {
  8. ResultAboutAddressDto Execute(RequestGetAboutAddressDto request);
  9. }
  10. }