Base solution for your next web application

Activities of "carlo.benitez"

Here you go RouteSchedule Route

Here is the Child entity:

namespace SprintTek.Shipping
{
    [Table("RouteSchedules")]
    public class RouteSchedule : Entity, IMayHaveTenant
    {
        public int? TenantId { get; set; }

        public virtual int DayOfWeek { get; set; }

        public virtual string AccountNumber { get; set; }

        public virtual int? RouteId { get; set; }

        [ForeignKey("RouteId")]
        public Route RouteFk { get; set; }

    }
}

Base Entity

namespace SprintTek.Shipping
{
    [Table("Routes")]
    public class Route : Entity, IMayHaveTenant
    {
        public int? TenantId { get; set; }

        public virtual string Code { get; set; }

    }
}

For example, I would like to add a Component Template to the Rad tool that would display the list items in a different style/theme from the default (maybe a grid view) one for some of the Entities but still have the option to select default one for the other entities. I guess what I am saying is that is there a way to dynamically add component templates without just overriding the default one so that I could still select it for some screens?

@ismcagdas

How do you add support for creation of Multilingual entities to the Rad Tool?

Yes, just need to add the dependency to the project and import. Thanks!

Showing 1 to 5 of 5 entries