Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mehmetalierol/1cf20b3656e790a5d125b4a922267ebe to your computer and use it in GitHub Desktop.
Save mehmetalierol/1cf20b3656e790a5d125b4a922267ebe to your computer and use it in GitHub Desktop.
using Company.Application.Common.Api.Base;
using Company.Application.Data.Entities;
using Company.Application.Dto;
namespace Company.Application.WebApi.Interfaces
{
public interface ILanguageController : IApiController<LanguageDto, Language>
{
bool CheckDublicateLanguage(string culture);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment