mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
18 lines
387 B
C#
18 lines
387 B
C#
using WebApp.DTOs;
|
|
using WebApp.Entities;
|
|
|
|
namespace WebApp.Mapping
|
|
{
|
|
public static class VolunteerSkillMapping
|
|
{
|
|
public static VolunteerSkill ToVolunteerSkillEntity(this SingleSkillDto SSDto, int uid)
|
|
{
|
|
return new VolunteerSkill()
|
|
{
|
|
UserId = uid,
|
|
SkillId = SSDto.Skill,
|
|
};
|
|
}
|
|
}
|
|
}
|