Skip to content
View HasannSola's full-sized avatar
  • Turkey

Block or report HasannSola

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Katmanli-Mimari Katmanli-Mimari Public

    Kurumsal Katmanlı Mimariye Uygun Proje Yapısı

    CSS 8 11

  2. Microservices-AkkaNet Microservices-AkkaNet Public

    Akka.Net , Katmanlı Mimari ile Microservis

    C# 1

  3. IRepository IRepository
    1
     public interface IRepository<T> where T : class
    2
        {     /// <summary>
    3
              /// Tüm nesneleri al
    4
              /// </summary>
    5
              /// <returns></returns>
  4. Repository Repository
    1
      public class Repository<T> : IRepository<T> where T : class
    2
        {
    3
            private CrmMsContext _context = null;
    4
            private DbSet<T> dbSet;
    5
            public Repository(CrmMsContext context)
  5. Create your random color Create your random color
    1
    function () {
    2
                var letters = '0123456789ABCDEF';
    3
                var color = '#';
    4
                for (var i = 0; i < 6; i++) {
    5
                    color += letters[Math.floor(Math.random() * 16)];
  6. Create your guid id Create your guid id
    1
     function () {
    2
                function s4() {
    3
                    return Math.floor((1 + Math.random()) * 0x10000)
    4
                      .toString(16)
    5
                      .substring(1);