23 lines
558 B
C#
23 lines
558 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using AyCode.Entities.ServiceProviders;
|
|
|
|
|
|
namespace TIAM.Entities.ServiceProviders
|
|
{
|
|
public class TiamServiceProvider : ServiceProviderBase
|
|
{
|
|
public TiamServiceProvider() { }
|
|
public TiamServiceProvider(string name, Guid ownerId) : this(Guid.NewGuid(), name, ownerId) { }
|
|
public TiamServiceProvider(Guid id, string name, Guid ownerId) : base(id, name, ownerId)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|