fix around

This commit is contained in:
Torma Kristóf 2021-05-03 16:00:51 +02:00
parent 67dafc1150
commit 030a254b6b
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
3 changed files with 23 additions and 25 deletions

23
.drone.yml Normal file
View File

@ -0,0 +1,23 @@
kind: pipeline
type: docker
name: default
steps:
- name: code-analysis
image: aosapps/drone-sonar-plugin
settings:
sonar_host:
from_secret: SONAR_HOST
sonar_token:
from_secret: SONAR_CODE
- name: kaniko
image: banzaicloud/drone-kaniko
settings:
registry: registry.kmlabz.com
repo: tormakris/${DRONE_REPO_NAME}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- latest
- ${DRONE_BUILD_NUMBER}

View File

@ -1,12 +0,0 @@
using System;
namespace hanyadikhetvan.Entities
{
public class Pause
{
public int Id { get; set; }
public int WeeklyTimeSpanId { get; set; }
public DateTime Startdate { get; set; }
public DateTime Enddate { get; set; }
}
}

View File

@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
namespace hanyadikhetvan.Entities
{
public class WeeklyTimeSpan
{
public int Id { get; set; }
public DateTime Startdate { get; set; }
public virtual ICollection<Pause> Pauses { get; set; }
}
}